iOS 笔记

1. 精简代码 优点:代码在代码块中只在代码块中有效,减少对其他作用域命名污染。 缺点:可读性差。

NSURL *url = ({

[NSURL URLWithString:@"http://www.baidu.com"];

});

UILabel *testLabel = ({

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];

label.text = @"test";

label.textAlignment = NSTextAlignmentCenter;

testLabel = label;

});

2. NSDictionary 另一种写法 (根据对象名字为key,值为value)

NSString *name = @"test";

NSNumber *userid = @(000111);

NSString *pwd = @"12345678";

NSDictionary *parm = NSDictionaryOfVariableBindings(name, userid, pwd);

{

name = test;

pwd = 12345678;

userid = 73;

}

3. 把tableview里cell的小对勾的颜色改成别的颜色

_mTableView.tintColor = [UIColor redColor];

4.navigationbar弄成透明的而不是带模糊的效果

[self.navigationBar setBackgroundImage:[UIImage new]

forBarMetrics:UIBarMetricsDefault];

self.navigationBar.shadowImage = [UIImage new];

self.navigationBar.translucent = YES;

5.改变uitextfield placeholder的颜色和位置

继承uitextfield,重写这个方法

- (void) drawPlaceholderInRect:(CGRect)rect {

[[UIColor blueColor] setFill];

[self.placeholder drawInRect:rect withFont:self.font lineBreakMode:UILineBreakModeTailTruncation alignment:self.textAlignment];

}

6.在继承中,凡是要求子类重写父类的方法必须先调用父类的方法的,可以在父类方法名后面加上 NS_REQUIRES_SUPER. 子类重写这个


方法会自动警告提示要调用父类方法。

- (void)test NS_REQUIRES_SUPER;

7.判断VC是否已经加载过

if (self.isViewLoaded) {

<#statements#>

}

8. dictionary 追加 dictionary 

[mutableDict addEntriesFromDictionary:appendDict];

9. 获取当前屏幕显示的viewcontroller

- (UIViewController *)currentVC {

UIViewController *result = nil;

UIWindow * window = [[UIApplication sharedApplication] keyWindow];

if (window.windowLevel != UIWindowLevelNormal) {

NSArray *windows = [[UIApplication sharedApplication] windows];

for(UIWindow * tmpWin in windows) {

if (tmpWin.windowLevel == UIWindowLevelNormal) {

window = tmpWin;

break;

}

}

}

UIView *frontView = [[window subviews] objectAtIndex:0];

id nextResponder = [frontView nextResponder];

if ([nextResponder isKindOfClass:[UIViewController class]]) {

result = nextResponder;

}else {

result = window.rootViewController;

}

return result;

}

10. 捕获APP异常

NSSetUncaughtExceptionHandler (&UncaughtExceptionHandler);

void UncaughtExceptionHandler(NSException *exception) {

NSArray *arr = [exception callStackSymbols];//得到当前调用栈信息

NSString *reason = [exception reason];//非常重要,就是崩溃的原因

NSString *name = [exception name];//异常类型

#if DEBUG

NSString *msg = [NSString stringWithFormat:@"栈信息%@\n崩溃原因%@\n异常类型%@",arr[0], reason, name];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"崩溃日志" message:msg delegate:nil cancelButtonTitle:@"了解" otherButtonTitles:nil, nil];

[alert show];

#endif

DDLogCrash(@"崩溃日志: exception type : %@ \n crash reason : %@ \n call stack info : %@", name, reason, arr);

}

11. iOS 写文件

NSString *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];

NSString *h5LogFile = [documentPath stringByAppendingPathComponent:@"h5Log"];

NSFileManager *filemanager = [NSFileManager defaultManager];

// 判断文件大小

long long size = [[filemanager attributesOfItemAtPath:h5LogFile error:nil] fileSize] / (1024.0 * 1024);

if (size > 10) {

[filemanager removeItemAtPath:h5LogFile error:nil];

}

if (![filemanager fileExistsAtPath:h5LogFile])

{

[filemanager createFileAtPath:h5LogFile contents:nil attributes:nil];

}

NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:h5LogFile];

[fileHandle seekToEndOfFile];

NSDateFormatter *formatter;

if (formatter == nil) {

formatter = [[NSDateFormatter alloc] init];

}

formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";

NSString *logStr = [NSString stringWithFormat:@"[%@ html5]:%@%@",[formatter stringFromDate:[NSDate date]],tag,txt];

logStr = [logStr stringByAppendingString:@"\r\n"];

NSData *data = [logStr dataUsingEncoding:NSUTF8StringEncoding];

NSData *aesData = [ZYAES256 AES256ParmEncryptWithKey:@"pamit" Encrypttext:data];

[fileHandle writeData:aesData];

[fileHandle closeFile];

logStr = nil;

12. NSDictionary 转换为model 系统方法 key需要和model属性对应

- (void)setValuesForKeysWithDictionary:(NSDictionary*)keyedValues;

[self.model setValuesForKeysWithDictionary:dict];

13.使用self.view.layer.borderWidth更好的方式圆角

CAShapeLayer *bordLayer = [CAShapeLayer layer];

bordLayer.frame = CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame));

bordLayer.lineWidth = 1.f;

bordLayer.strokeColor = [UIColor lightGrayColor].CGColor;

bordLayer.fillColor = [UIColor clearColor].CGColor;

UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame)) cornerRadius:3.0];

bordLayer.path = bezierPath.CGPath;

[self.view.layer insertSublayer:bordLayer atIndex:0];

14. @autoreleasepool  这段代码在每次遍历后释放所有autorelease对象

NSArray *urls = @[@"http://baidu.com",@"http://jd.com"];

for (NSURL *url in urls) {

@autoreleasepool {

NSError *error;

NSString *fileContents = [NSString stringWithContentsOfURL:url

encoding:NSUTF8StringEncoding error:&error];

// 处理

}

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容