1、字符串转换为日期
//实例化一个NSDateFormatter对象
NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *date =[dateFormat dateFromString:@"1980-01-01 00:00:01"];
2、日期转换为字符串
//实例化一个NSDateFormatter对象
NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *currentDateStr = [dateFormatter stringFromDate:[NSDate date]];
3、字体大小转化
750设计图 ppi72的情况下(Xcode默认字体):
- (英文)iOSFontSize100 对应 144px ---> font = 图上px 乘以 0.69444444
- (汉字)iOSFontSize100 对应 190px ---> font = 图上px 乘以 0.52631579
4、tabBar字体大小、颜色设置
- 写在LLTabBarController.m中
//未选中状态
NSMutableDictionary *NormalAttrs = [NSMutableDictionary dictionary];
NormalAttrs[NSForegroundColorAttributeName] = HexRGBAlpha(0x999999, 1);
NormalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12.8];
//选中状态
NSMutableDictionary *SelectedAttrs = [NSMutableDictionary dictionary];
SelectedAttrs[NSForegroundColorAttributeName] = MainColor;
//赋值
UITabBarItem *item = [UITabBarItem appearance];
[item setTitleTextAttributes:NormalAttrs forState:UIControlStateNormal];
[item setTitleTextAttributes:SelectedAttrs forState:UIControlStateSelected];
5、NSString 类型 无论为@""
还是nil
他的length
都为0
6、 Color Blended Layers
Shows blended view layers. Multiple view layers that are drawn on top of each other with blending enabled are highlighted in red. Reducing the amount of red in your app when this option is selected can dramatically improve your app’s performance. Blended view layers often cause slow table scrolling.
- 常见的就是将背景色设为父视图的背景色。
7、 会造成 offscreen rendering的原因有:
Any layer with a mask (layer.mask)
Any layer with layer.masksToBounds being true
Any layer with layer.allowsGroupOpacity set to YES and layer.opacity is less than 1.0
Any layer with a drop shadow (layer.shadow*).
Any layer with layer.shouldRasterize being true
Any layer with layer.cornerRadius, layer.edgeAntialiasingMask, layer.allowsEdgeAntialiasing
instrument core animation 选项
-
Color Blended layers######
勾选这个选项后,blended layer 就会被显示为红色,而不透明的layer则是绿色。我们希望越少红色区域越好。
Color Hits Green and Misses Red
这个选项主要是检测我们有无滥用或正确使用layer的shouldRasterize属性.成功被缓存的layer会标注为绿色,没有成功缓存的会标注为红色。
-
Color copied images######
这个选项主要检查我们有无使用不正确图片格式,若是GPU不支持的色彩格式的图片则会标记为青色,则只能由CPU来进行处理。我们不希望在滚动视图的时候,CPU实时来进行处理,因为有可能会阻塞主线程。
-
Color misaligned images######
这个选项检查了图片是否被放缩,像素是否对齐。被放缩的图片会被标记为黄色,像素不对齐则会标注为紫色。
-
Color offscreen-rendered yellow######
这个选项将需要offscreen渲染的的layer标记为黄色。
NavigationBar和ToolBar被标记为黄色。因为它们需要模糊背后的内容,这需要offscreen渲染。但是这是我们需要的。而图片也是被标记为黄色,那是因为阴影的缘故。我前面已经提到了这一点,如果此时我们用shadowPath来替代的话,就能够避免offscreen渲染带来的巨大开销。
-
Color OpenGL fast path blue######
这个选项勾选后,由OpenGL compositor进行绘制的图层会标记为蓝色。这是一个好的结果。
-
Flash updated regions######
会标记屏幕上被快速更新的部分为黄色,我们希望只是更新的部分被标记完黄色。
常见tableView样式
_tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
_tableView.0 = GRAYCOLOR;
_tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 1 / [UIScreen mainScreen].scale)];
tableView.tableFooterView.backgroundColor = GRAYCOLOR;
汉字首字母
- (NSString *)firstCharactor:(NSString *)aString
{
//转成了可变字符串
NSMutableString *str = [NSMutableString stringWithString:aString];
//先转换为带声调的拼音
CFStringTransform((CFMutableStringRef)str,NULL, kCFStringTransformMandarinLatin,NO);
//再转换为不带声调的拼音
CFStringTransform((CFMutableStringRef)str,NULL, kCFStringTransformStripDiacritics,NO);
//转化为大写拼音
NSString *pinYin = [str capitalizedString];
//获取并返回首字母
return [pinYin substringToIndex:1];
}