[整理]Swift第三方库管理工具:Carthage vs CocoaPods
crifan 10年前 (2015-11-21) 2132浏览 0评论
[swift Carthage] 从: SwiftyJSON/SwiftyJSON · GitHub -》 看到的: Carthage/Carthage · GitHub [swift CocoaPods] 最近看到很多关于Pod的事情,比如: da...
在路上on the way - 走别人没走过的路,让别人有路可走
crifan 10年前 (2015-11-21) 2132浏览 0评论
[swift Carthage] 从: SwiftyJSON/SwiftyJSON · GitHub -》 看到的: Carthage/Carthage · GitHub [swift CocoaPods] 最近看到很多关于Pod的事情,比如: da...
crifan 10年前 (2015-11-21) 3942浏览 0评论
swift代码出错: Login.swift:93:87: Cannot convert value of type ‘String’ to type ‘NSData’ in coercion 去折腾:...
crifan 10年前 (2015-11-21) 4156浏览 0评论
需要用swift将json字符串: { "active": true, "contacts": [], "doc_type": "user", &...
crifan 10年前 (2015-11-20) 4394浏览 0评论
在别处UITableViewDataSource中,更新了TableView的数据 但是页面显示缺没变化 需要让UI显示知道数据变化,刷新显示 搜: swift reload tableview data 参考: ios – se...
crifan 10年前 (2015-11-20) 13417浏览 0评论
flask出错。 搜: flask “message”: “The browser (or proxy) sent a request that this server could not under...
crifan 10年前 (2015-11-20) 7985浏览 0评论
搜: flask request get_json None 参考: python – Flask request and application/json content type – Stack Overflow ...
crifan 10年前 (2015-11-20) 6180浏览 0评论
想要实现类似于这样的效果: var hasInserted:Bool = false for 。。。in 。。。。 { 。。。 if。。。 hasIn...
crifan 10年前 (2015-11-20) 2338浏览 0评论
想要去了解python中的property函数 搜: python property函数 参考: Python descriptor 以及 内置property()函数 – 真实的活 – 博客园 Python进阶之“属性(p...
crifan 10年前 (2015-11-20) 2101浏览 0评论
想要给字典变量: [String:String] 添加元素 但是不知道如何操作。 搜: swift dictionary 参考: The Swift Programming Language (Swift 2.1): Collection T...
crifan 10年前 (2015-11-20) 3080浏览 0评论
需要用swift实现,将字符串数组合并为单个的字符串 最后直接+即可: //merge character array into string func mergeCharArrToSingleStr(charArr:[Character]...