
ios
文章平均质量分 58
ai309581115
Swift开发1年工作经验IOS2年工作经验
展开
-
ios下inhouse发布相关代码
html页面代码ipa downloadplist代码://www.apple.com/DTDs/PropertyList-1.0.dtd"> items assets kind software-package url http://localhost/iosApp/xxx.ipa原创 2015-07-25 14:25:06 · 444 阅读 · 0 评论 -
解决dyld: Library not loaded: @rpath/libswiftCore.dylib
targets-build setting-embedded content contains swift code -> yes原创 2015-09-09 16:43:15 · 1660 阅读 · 0 评论 -
xcode6 framework中使用xib
targets->build phases->Copy Bundle Resources加入相应的xib重点是下面的路径UIViewController *vc = [[UIViewControlleralloc]initWithNibName:@"Frameworks/CustomFrameWork.framework/ActivityViewController"bundl原创 2015-09-10 10:29:34 · 428 阅读 · 0 评论 -
StoryBoard中自定义view时初始化的问题
override func drawRect(rect: CGRect) { // Drawing code //third print("drawRect")}override init(frame: CGRect) { //never super.init(frame: frame) }required init?(coder aDeco原创 2015-11-24 14:14:24 · 809 阅读 · 0 评论 -
xcode crash分析方式
详细方法见下面http://www.cocoachina.com/industry/20140514/8418.htmlsymbolicatecrash 命令行分析工具Xcode 7.3 中 symbolicatecrash在下面这个路径里/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.fr原创 2016-04-30 15:18:34 · 764 阅读 · 0 评论 -
Alamofire分析
Manager 生成RequestRequest根据请求不同生成不同的delegate对象SessionDelegate 利用subdelegates存储对应Request的对应的deleagte同时实现一些通用的SessionDelegate通过self[task] 调用对应的delegate方法之所以这么实现大概是为了是Request能处理文件上传,下载,同时请求数据。原创 2016-05-27 12:38:06 · 595 阅读 · 0 评论 -
swift map reduce 获取下标(index)的方法
原文:http://stackoverflow.com/questions/28012205/map-or-reduce-with-index-in-swiftYou can use enumerate to convert a sequence (Array, String, etc.) to a sequence of tuples with an integer coun转载 2016-06-29 10:58:09 · 3385 阅读 · 0 评论