上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: * SDAutoLayout地址:https://github.com/gsdios/SDAutoLayout * SDAutoLayout视频教程:http://www.letv.com/ptv/vplay/24038772.html * SDAutoLayout用法示例:https://gith 阅读全文
posted @ 2016-08-26 17:14 tongyuling 阅读(119) 评论(0) 推荐(0) 编辑
摘要: x:你想返回的第几个界面 返回方法: int index = (int)[[self.navigationController viewControllers]indexOfObject:self]; [self.navigationController popToViewController:[s 阅读全文
posted @ 2016-08-24 10:14 tongyuling 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #import <AVFoundation/AVFoundation.h> @property (nonatomic, strong) AVSpeechSynthesizer *synthesizer; - (void)viewDidLoad { [super viewDidLoad]; self. 阅读全文
posted @ 2016-07-15 09:56 tongyuling 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 归档: NSMutableData *data = [[NSMutableData alloc] init]; //创建归档辅助类 NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:d 阅读全文
posted @ 2016-06-27 17:45 tongyuling 阅读(240) 评论(0) 推荐(0) 编辑
摘要: #pragma mark 设置textview的限制字数(含中文) -(void)textViewDidChange:(UITextView*)textView { NSString*textString = textView.text; NSString*language = textView.t 阅读全文
posted @ 2016-06-15 14:24 tongyuling 阅读(2303) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Tim9Liu9/TimLiu-iOS#%E5%AE%8C%E6%95%B4%E9%A1%B9%E7%9B%AE 阅读全文
posted @ 2016-06-07 11:49 tongyuling 阅读(96) 评论(0) 推荐(0) 编辑
摘要: //设置gif图片的播放速率 self.imageView.animationDuration = 1.0f; //设置gif图片数组 self.imageView.animationImages = imageArray; //设置gif图片播放的重复次数,-1为无穷次 self.imageVie 阅读全文
posted @ 2016-06-07 10:00 tongyuling 阅读(533) 评论(0) 推荐(0) 编辑
摘要: //图片适应尺寸 self.imageView.contentMode = UIViewContentModeScaleToFill; //填充 self.imageView.clipsToBounds = NO; // 裁剪边缘 阅读全文
posted @ 2016-06-03 16:57 tongyuling 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //调用 NSInteger i = [self howManyDaysInThisMonth:2]; NSLog(@"%ld",(long)i); // 获取今年指定月的天数 - (NSInteger)howManyDaysInThisMonth :(NSInteger)imonth { int 阅读全文
posted @ 2016-06-01 14:08 tongyuling 阅读(1880) 评论(0) 推荐(0) 编辑
摘要: 如何检测应用更新? 你可以使用友盟等第三方工具,但如果你只想使用轻量级的方法,只需GET这个接口:http://itunes.apple.com/lookup?id=你的应用程序的ID,解析返回的json字符串就行。 阅读全文
posted @ 2016-05-31 17:24 tongyuling 阅读(310) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页