访次: AmazingCounters.com 次
摘要: - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { i 阅读全文
posted @ 2016-02-17 22:12 JusDoit 阅读(593) 评论(0) 推荐(0) 编辑
摘要: #iOS9 新特新介绍 ##一. UIStackView * 新控件:UIStackView 栈视图, 类似AppleWatch的Group * 父类:UIView * 特点: 1. 只能垂直或水平散列,因此不能完全取代Autolayout 2. 能够快速的按顺序获取到子控件 3. 批量修改间距更快 阅读全文
posted @ 2016-02-17 20:28 JusDoit 阅读(503) 评论(0) 推荐(0) 编辑
摘要: static NSMutableDictionary *_soundIDDict; /**缓存字典初始化 ,只加载一次*/ +(void)initialize{ _soundIDDict = [NSMutableDictionary dictionary]; } 阅读全文
posted @ 2016-02-17 20:10 JusDoit 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 这个问题主要是因为视图还没有加载出来就切换到下一个视图,模态视图的切换应该在view完全展示之后. 所以不要在viewdidload之类的方法中写切换视图代码. 阅读全文
posted @ 2016-02-17 20:02 JusDoit 阅读(291) 评论(0) 推荐(0) 编辑
摘要: // 如果要在真机运行, 需要一个session类, 并且制定分类为录音 AVAudioSession *session = [AVAudioSession new]; [session setCategory:AVAudioSessionCategoryRecord error:nil]; 阅读全文
posted @ 2016-02-17 19:40 JusDoit 阅读(312) 评论(0) 推荐(0) 编辑