原文https://slpowercoder.github.io/
去掉按钮的高亮黑
1[funcImgBtn setAdjustsImageWhenHighlighted:NO];设置视图属性防止背景图片变形
关于UIViewContentMode的详解
http://blog.csdn.net/iunion/article/details/749451112345//对于UIButton需要设置button中的imageView的contentMode属性button.imageView.contentMode = UIViewContentModeScaleAspectFill;//视图.contentMode = UIViewContentModeScaleAspectFill;视图.clipsToBounds = YES;当一个页面有多个scrollView(或继承自scrollVIew)的时候,点击状态栏不会回到顶部,可以将非当前显示页的scrollVIew. scrollToTop设置为NO。
去掉在UITableViewStylePlain 样式的时候多余的默认cell
1_tableView.tableFooterView = [[UIView alloc]init];去掉在UITableViewStyleGrouped 样式的时候默认的组脚高度
123-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{return 0.001; //越小越好,不能设置为0}自定义导航栏的返回按钮而造成返回手势的失效的解决办法,对于最顶层的VC我们需要设置enabled = NO,因为最外面一层是不需要该手势的
12self.navigationController.interactivePopGestureRecognizer.delegate = self;self.navigationController.interactivePopGestureRecognizer.enabled = YES;根据十六进制色值返回一个UIColor对象的宏
1#define USERCOLOR(string) [UIColor colorWithRed:((float)((string & 0xFF0000) >> 16))/255.0 green:((float)((string & 0xFF00) >> 8))/255.0 blue:((float)(string & 0xFF))/255.0 alpha:1.0]控制屏幕是否锁屏
12//值为yes的时候可以防止屏幕黑屏,注意在程序结束点时候要设置为no[[UIApplication sharedApplication] setIdleTimerDisabled:YES];防止自定义导航栏返回按钮时,返回手势失效
1self.navigationController.interactivePopGestureRecognizer.enabled = YES;打印函数,可以打印所在的函数,行数,以及你要打印的值
1#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);UISwitch的大小直接设置frame是没有用的,可以通过CGAffineTransformMakeScale缩放来设置
load和initialize
1234//程序在加载类文件时候会调用load,无论实现该方法的类有没有被引用(只要程序运行的时候就会加载该类文件)+(void)load//在类被初始化之前会调用一次+(void)initializeiPad使用UIAlertController会crash
http://stackoverflow.com/questions/31577140/uialertcontroller-is-crashed-ipad