摘要:
//返回用户手机通讯录中所有联系人的手机号func phoneNumbersFromContacts() throws -> [String]{ var phoneNumbers: [String] = [String]() //获取授权状态, 如果没有授权,那么请求授权 ... 阅读全文
摘要:
extension String{ func subString(from fromIndex: Int, to toIndex: Int) -> String{ var halfString = self.substringWithRange(Range(start: adva... 阅读全文
摘要:
extension UIView{ //任意UIView添加badge func showBadgeValue(#strBadgeValue: String) -> Void{ let tabBar = UITabBar(frame: CGRectMake... 阅读全文
摘要:
func distanceBetween(#lat1: Float, lng1: Float, lat2: Float, lng2: Float) -> Float{ var jl_jd: Float = 102834.74258026089786013677476285 var... 阅读全文
摘要:
SWTableViewCell的功能是添加TableViewCell的侧滑按钮(包括左滑和右滑按钮)项目地址:https://github.com/CEWendel/SWTableViewCell它是用OC写的,可以用pod安装,也可以直接导入到项目中去,但是如果是swift项目,pod中已经安装了... 阅读全文
摘要:
SQLite.Swift :https://github.com/stephencelis/SQLite.swift let filemgr = NSFileManager.defaultManager() let dirPaths = NSSearchPathForDi... 阅读全文
摘要:
在os x下,安装完python爬虫框架scrapy后,使用scrapy startproject tutorial新建scrapy项目时,出现以下问题:Traceback (most recent call last): File "/usr/local/bin/scrapy", line 5,... 阅读全文
摘要:
AFNetworking请求中含有中文时程序崩溃 AFHTTPRequestOperationManager * manager = [AFHTTPRequestOperationManager manager]; [manager GET:urlString parameters:ni... 阅读全文
摘要:
在使用pod install命令后,一直处于analyzing dependencies的状态,之后出现error:[!] An error occurred while performing `git pull` on repo `master`. [!] /usr/bin/git pull --... 阅读全文
摘要:
SDWebImage是Git上的一个托管项目,它被用来加载来自网络的图片。它有着速度快,异步下载图片等优点。SDWebImage:https://github.com/rs/SDWebImage它具有如下多个特点:异步图片下载,支持gif,自动的图片缓存处理,使用GCD和ARC,来自同一个URL的图... 阅读全文