标签:
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
//关闭tableView顶部的cell冒出来的白色空隙 self.automaticallyAdjustsScrollViewInsets = NO
//关闭tableView选中的动画 [tableView deselectRowAtIndexPath:indexPath animated:NO];
开启手势返回 self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;
其他格式:像对勾、删除什么类似,更改一下属性值即可
button.clipsToBounds = YES;
UIVisualEffectView *visualEffectView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]]; visualEffectView.frame = CGRectMake(0, 0, 320*[FlexibleFrame ratio], 180*[FlexibleFrame ratio]); visualEffectView.alpha = 1.0;
//是否自动纠错功能 text.autocorrectionType = UITextAutocorrectionTypeNo; typedef enum { UITextAutocorrectionTypeDefault, 默认 UITextAutocorrectionTypeNo, 不自动纠错 UITextAutocorrectionTypeYes, 自动纠错 } UITextAutocorrectionType;
text.secureTextEntry = YES;
CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动 原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:
pod install --verbose --no-repo-update pod update --verbose --no-repo-update
find . -name ".m" -or -name ".h" -or -name ".xib" -or -name ".c" |xargs wc -l 1
标签:
原文地址:http://www.cnblogs.com/leiming1001/p/5262880.html