08 2016 档案

摘要:判断是否为gif/png图片的正确姿势 1.在能取到图片后缀的前提下 1 2 3 4 5 6 7 8 9 //假设这是一个网络获取的URL NSString *path = @"http://pic3.nipic.com/20090709/2893198_075124038_2.gif"; // 判 阅读全文
posted @ 2016-08-22 10:07 阳光普照大地 阅读(1490) 评论(0) 推荐(0)
摘要:NSString使用stringWithFormat拼接的相关知识 保留2位小数点 保留2位小数点 1 2 3 4 //.2代表小数点后面保留2位(2代表保留的数量) NSString *string = [NSString stringWithFormat:@"%.2f",M_PI]; //输出结 阅读全文
posted @ 2016-08-22 09:59 阳光普照大地 阅读(584) 评论(0) 推荐(0)
摘要:1. 添加监听 [self.tableView addObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew context:nil]; 2.监听的处理 - (void)observeValueFo 阅读全文
posted @ 2016-08-12 14:04 阳光普照大地 阅读(7181) 评论(0) 推荐(0)
摘要:1. 设置位置 然后 [UIView animateWithDuration:0.5 animations:^{ [self.view layoutIfNeeded]; // 写了这个才会执行动画 }]; 2. 转圆 加载中 动画 CABasicAnimation* rotationAnimatio 阅读全文
posted @ 2016-08-08 15:06 阳光普照大地 阅读(197) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-08-05 09:50 阳光普照大地 阅读(153) 评论(0) 推荐(0)
摘要:目标文件放置位置 ~/Library/Developer/Xcode/UserData/CodeSnippets CodeSnippets 这整个文件夹都是 直接搬移整个文件夹 操作方法: 解压缩并复制到以下目录即可 目标文件: <<CodeSnippets.zip>> 阅读全文
posted @ 2016-08-02 14:37 阳光普照大地 阅读(751) 评论(0) 推荐(0)
摘要:[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor],UITextAttributeFont:[UIFont fontWithName:@"Marion 阅读全文
posted @ 2016-08-01 16:51 阳光普照大地 阅读(251) 评论(0) 推荐(0)
摘要:1.判断用户是否有权限访问相册 #import <AssetsLibrary/AssetsLibrary.h> [objc] view plain copy ALAuthorizationStatus author = [ALAssetsLibraryauthorizationStatus]; if 阅读全文
posted @ 2016-08-01 16:47 阳光普照大地 阅读(293) 评论(0) 推荐(0)