Pinned Repositories
aelf-wallet-ios
iOS wallet for aelf
hardwallet
Hyperpay hardwallet
hyperpaywallet
HPWalletCore is committed to build a straightforward and easy-to-use cross platform wallet library.
Algorithm-About-LeetCode
Golang&Swift 写点小算法
BlockChainWallet
ChainWallet is committed to creating the world's best and most famous wallet SDK for iOS / Android / PC / MacOS
iOS-SourceCode-Analysis
iOS 常用框架 源码分析
MACProject
这是一个用 Objective-C 写的 iOS 轻量级框架,旨在快速构建 iOS App,欢迎 Star
MACTableView
对 UITableView 空白页文字、空白页图片、上拉下拉事件等进行了高度封装,命名为MACTableView,使用简单高效,一键集成
MACTableView-Swift
对 UITableView 空白页文字、空白页图片、上拉下拉事件等进行了高度封装,命名为MACTableView,使用简单高效,一键集成
boka
JAM built with Swift
MacOMNI's Repositories
MacOMNI/MapKit
概览 现在很多社交、电商、团购应用都引入了地图和定位功能,似乎地图功能不再是地图应用和导航应用所特有的。的确,有了地图和定位功能确实让我们的生活更加丰富多彩,极大的改变了我们的生活方式。例如你到了一个陌生的地方想要查找附近的酒店、超市等就可以打开软件搜索周边;类似的,还有很多团购软件可以根据你所在的位置自动为你推荐某些商品。总之,目前地图和定位功能已经大量引入到应用开发中。今天就和大家一起看一下iOS如何进行地图和定位开发。 定位 地图 定位 要实现地图、导航功能,往往需要先熟悉定位功能,在iOS中通过Core Location框架进行定位操作。Core Location自身可以单独使用,和地图开发框架MapKit完全是独立的,但是往往地图开发要配合定位框架使用。在Core Location中主要包含了定位、地理编码(包括反编码)功能。 定位功能 定位是一个很常用的功能,如一些地图软件打开之后如果用户允许软件定位的话,那么打开软件后就会自动锁定到当前位置,如果用户手机移动那么当前位置也会跟随着变化。要实现这个功能需要使用Core Loaction中CLLocationManager类,首先看一下这个类的一些主要方法和属性: 类方法 说明 + (BOOL)locationServicesEnabled; 是否启用定位服务,通常如果用户没有启用定位服务可以提示用户打开定位服务 + (CLAuthorizationStatus)authorizationStatus; 定位服务授权状态,返回枚举类型: kCLAuthorizationStatusNotDetermined: 用户尚未做出决定是否启用定位服务 kCLAuthorizationStatusRestricted: 没有获得用户授权使用定位服务,可能用户没有自己禁止访问授权 kCLAuthorizationStatusDenied :用户已经明确禁止应用使用定位服务或者当前系统定位服务处于关闭状态 kCLAuthorizationStatusAuthorizedAlways: 应用获得授权可以一直使用定位服务,即使应用不在使用状态 kCLAuthorizationStatusAuthorizedWhenInUse: 使用此应用过程中允许访问定位服务 属性 说明 desiredAccuracy 定位精度,枚举类型: kCLLocationAccuracyBest:最精确定位 CLLocationAccuracy kCLLocationAccuracyNearestTenMeters:十米误差范围 kCLLocationAccuracyHundredMeters:百米误差范围 kCLLocationAccuracyKilometer:千米误差范围 kCLLocationAccuracyThreeKilometers:三千米误差范围 distanceFilter 位置信息更新最小距离,只有移动大于这个距离才更新位置信息,默认为kCLDistanceFilterNone:不进行距离限制 对象方法 说明 startUpdatingLocation 开始定位追踪,开始定位后将按照用户设置的更新频率执行-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;方法反馈定位信息 stopUpdatingLocation 停止定位追踪 startUpdatingHeading 开始导航方向追踪 stopUpdatingHeading 停止导航方向追踪 startMonitoringForRegion: 开始对某个区域进行定位追踪,开始对某个区域进行定位后。如果用户进入或者走出某个区域会调用- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region和- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region代理方法反馈相关信息 stopMonitoringForRegion: 停止对某个区域进行定位追踪 requestWhenInUseAuthorization 请求获得应用使用时的定位服务授权,注意使用此方法前在要在info.plist中配置NSLocationWhenInUseUsageDescription requestAlwaysAuthorization 请求获得应用一直使用定位服务授权,注意使用此方法前要在info.plist中配置NSLocationAlwaysUsageDescription 代理方法 说明 -(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations; 位置发生改变后执行(第一次定位到某个位置之后也会执行) - (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading; 导航方向发生变化后执行 - (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region 进入某个区域之后执行 - (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region 走出某个区域之后执行
MacOMNI/AFMInfoBanner
Easy to use auto-hiding notice bar below Navigation Bar
MacOMNI/ALAlertBanner
A clean and simple alert banner for iPhone and iPad - https://twitter.com/_antlo
MacOMNI/android-common
Android common lib, include ImageCache, HttpCache, DropDownListView, DownloadManager, Utils and so on 微信公众号:codekk
MacOMNI/azhengkun
This is my pictrue.
MacOMNI/BlockAlertsAnd-ActionSheets
Beautifully done UIAlertView and UIActionSheet replacements inspired by TweetBot
MacOMNI/CHTCollectionViewWaterfallLayout
The waterfall (i.e., Pinterest-like) layout for UICollectionView.
MacOMNI/DropdownMenu
DropdownMenu is an iOS navigation controller using a Container View, storyboards and segues.
MacOMNI/ECSlidingViewController
Customizable sliding view controller container.
MacOMNI/HZPhotoBrowser
图片浏览器 ,photoBrowser ,新浪微博,picture,pictureBrowser,sina,weibo
MacOMNI/idev-recipes
Open source code for the idevrecipes.com blog
MacOMNI/iOS-boilerplate
iOS-app template with lots of common tasks solved
MacOMNI/ios-dev-flow
iOS 开发流程笔记
MacOMNI/JKImagePicker
Image picker
MacOMNI/MONActivityIndicatorView
MONActivityIndicatorView is an awesome custom activity indicator view for iOS.
MacOMNI/MXPullDownMenu
自制的一个下拉菜单UI控件, 使用方式简单.
MacOMNI/Mylibrary
just offer myself
MacOMNI/NiceCellDemo
版本控制
MacOMNI/ParallaxTableViewHeader
Parallax scrolling effect on UITableView header view when a tableView is scrolled
MacOMNI/popping
A collection of animation examples for iOS apps.
MacOMNI/SchoolAPP
此应
MacOMNI/SchoolAPPDEMO
MacOMNI/ThatPhoto
ThatPhoto is an app that lets you view and edit your photos
MacOMNI/TMCache
Fast parallel object cache for iOS and OS X.
MacOMNI/UIImageView-BetterFace
a UIImageView category to let the picture-cutting with faces showing better
MacOMNI/Yiche
MacOMNI/yiCheNetDemo
易车网