上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: iOS 4开始引入的multitask,我们可以实现像ipod程序那样在后台播放音频了。如果音频操作是用苹果官方的AVFoundation.framework实现,像用AvAudioPlayer,AvPlayer播放的话,要实现完美的后台音频播放,依据app的功能需要,可能需要实现几个关键的功能。首... 阅读全文
posted @ 2015-08-20 11:30 Milo_D 阅读(787) 评论(0) 推荐(0) 编辑
摘要: NSString *hintStr = @"输入材料标题搜索材料\n注:可根据材料序号直接搜索, 如TPO23"; CGSize size = [toolset returnTextStringSizeWithString:hintStr withBoundSize:CGSizeMake(Main_Screen_Width - 72, MAXFLOAT) w... 阅读全文
posted @ 2015-08-19 15:26 Milo_D 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 样式展示.h文件#import @interface NALLabelsMatrix : UIView { NSArray *columnsWidths; uint numRows; uint dy;}- (id)initWithFrame:(CGRect)frame andColumnsWi... 阅读全文
posted @ 2015-08-18 14:44 Milo_D 阅读(199) 评论(0) 推荐(0) 编辑
摘要: NSPredicate 用于指定过滤条件,主要用于从集合中分拣出符合条件的对象,也可以用于字符串的正则匹配。NSPredicate常用方法介绍[objc]view plaincopy1.创建NSPredicate(相当于创建一个过滤条件)NSPredicate*predicate=[NSPredic... 阅读全文
posted @ 2015-08-16 12:46 Milo_D 阅读(976) 评论(0) 推荐(0) 编辑
摘要: 要分析崩溃日志,首先需要保留发布时的编译出来的.xcarchive文件。这个文件包含了.DSYM文件。我一般的做法是,发布成功后,把这个文件.xcarchive直接提交到代码版本库对应的版本分支里,这样就不会搞丢了。这个文件在哪呢?打开XCode->菜单Window->Organizer,在编译成功... 阅读全文
posted @ 2015-08-14 14:14 Milo_D 阅读(1213) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-13 15:11 Milo_D 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 今天升级Xcode 7.0 bata发现网络访问失败。输出错误信息The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.Go... 阅读全文
posted @ 2015-08-13 13:08 Milo_D 阅读(213) 评论(0) 推荐(0) 编辑
摘要: NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"country" ascending:YES]; [userArray sortUsingDescriptors:[NSArray arrayWith 阅读全文
posted @ 2015-08-10 11:19 Milo_D 阅读(283) 评论(0) 推荐(0) 编辑
摘要: VVDocumenter-Xcode是Xcode上一款快速添加标准注释,并可以自动生成文档的插件。有了VVDocumenter-Xcode,规范化的注释,只需要输入三个斜线“///”就可以搞定,非常方面实用,目前已经支持Swift。Objective-C效果图:Swift效果图:从Xcode 5开始... 阅读全文
posted @ 2015-07-23 21:16 Milo_D 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 往空仓库提交代码之前先将文档区的_gitignore放到项目根目录然后改名成.gitignore然后git add .gitignore以上的目的是忽略一些不应该提交GIT的文件,多人编辑工程的时候不冲突git举例:创建 git 仓库:mkdir aaacdaaagit initgit add .g... 阅读全文
posted @ 2015-07-22 10:55 Milo_D 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页