2018-01-12

一、调用代码使APP进入后台,达到点击Home键的效果。

[[UIApplication sharedApplication]performSelector:@selector(suspend)];

1

suspend的英文意思有:暂停; 悬; 挂; 延缓;

二、带有中文的URL处理。(非UTF-8处理,注意一下)

大概举个例子,类似下面的URL,里面直接含有中文,可能导致播放不了,那么我们要处理一个这个URL,因为他太操蛋了,居然用中文。

http://static.tripbe.com/videofiles/视频/我的自拍视频.mp4NSString *path  = (__bridge_transfer NSString *)CFURLCreateStringByReplacingPercentEscapesUsingEncoding(NULL,                                                                                                            (__bridge CFStringRef)model.mp4_url,                                                                                                        CFSTR(""),                                                                                                                CFStringConvertNSStringEncodingToEncoding(NSUTF8StringEncoding));

1

2

三、获取UIWebView的高度

个人最常用的获取方法,感觉这个比较靠谱

- (void)webViewDidFinishLoad:(UIWebView *)webView  {      CGFloat height = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] floatValue];  CGRect frame = webView.frame;  webView.frame= CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, height);  }

1

2

3

4

5

四、给UIView设置图片(UILabel一样适用)

第一种方法:

利用的UIView的设置背景颜色方法,用图片做图案颜色,然后传给背景颜色。

UIColor*bgColor = [UIColorcolorWithPatternImage: [UIImageimageNamed:@"bgImg.png"];UIView*myView = [[UIViewalloc] initWithFrame:CGRectMake(0,0,320,480)];[myView setBackGroundColor:bgColor];

1

2

3

第二种方法:

UIImage*image = [UIImageimageNamed:@"yourPicName@2x.png"];yourView.layer.contents= (__bridgeid)image.CGImage;//设置显示的图片范围yourView.layer.contentsCenter= CGRectMake(0.25,0.25,0.5,0.5);//四个值在0-1之间,对应的为x,y,width,height

1

2

3

4

五、去掉UITableView多余的分割线

yourTableView.tableFooterView = [UIView new];

1

六、调整cell分割线的位置,两个方法一起用,暴力解决,防脱发

-(void)viewDidLayoutSubviews {if([self.mytableviewrespondsToSelector:@selector(setSeparatorInset:)]) {        [self.mytableviewsetSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];    }if([self.mytableviewrespondsToSelector:@selector(setLayoutMargins:)])  {        [self.mytableviewsetLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];    }}#pragma mark - cell分割线- (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath{if([cell respondsToSelector:@selector(setSeparatorInset:)]){        [cell setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];    }if([cell respondsToSelector:@selector(setLayoutMargins:)]) {        [cell setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];    }}

七、UILabel和UIImageView的交互userInteractionEabled默认为NO。那么如果你把这两个类做为父试图的话,里面的所有东东都不可以点击哦。曾经有一个人,让我帮忙调试bug,他调试很久没搞定,就是把WMPlayer对象(播放器对象)放到一个UIImageView上面。这样imageView

addSubView:wmPlayer 后,播放器的任何东东都不能点击了。userInteractionEabled设置为YES即可。

八、UISearchController和UISearchBar的Cancle按钮改title问题,简单粗暴

- (BOOL)searchBarShouldBeginEditing:(UISearchBar*)searchBar{    searchController.searchBar.showsCancelButton=YES;UIButton*canceLBtn = [searchController.searchBarvalueForKey:@"cancelButton"];    [canceLBtn setTitle:@"取消"forState:UIControlStateNormal];    [canceLBtn setTitleColor:[UIColorcolorWithRed:14.0/255.0green:180.0/255.0blue:0.0/255.0alpha:1.00] forState:UIControlStateNormal];    searchBar.showsCancelButton=YES;returnYES;}

九、UITableView收起键盘何必这么麻烦

一个属性搞定,效果好(UIScrollView同样可以使用)

以前是不是觉得[self.view endEditing:YES];很屌,这个下面的更屌。

yourTableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

另外一个枚举为UIScrollViewKeyboardDismissModeInteractive,表示在键盘内部滑动,键盘逐渐下去。

十、NSTimer

1、NSTimer计算的时间并不精确

2、NSTimer需要添加到runLoop运行才会执行,但是这个runLoop的线程必须是已经开启。

3、NSTimer会对它的tagert进行retain,我们必须对其重复性的使用intvailte停止。target如果是self(指UIViewController),那么VC的retainCount+1,如果你不释放NSTimer,那么你的VC就不会dealloc了,内存泄漏了。

十一、UIViewController没用大小(frame)

经常有人在群里问:怎么改变VC的大小啊?

瞬间无语。(只有UIView才能设置大小,VC是控制器啊,哥!)

十二、用十六进制获取UIColor(类方法或者Category都可以,这里我用工具类方法)

+ (UIColor*)colorWithHexString:(NSString*)color{NSString*cString = [[color stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];// String should be 6 or 8 charactersif([cString length] <6) {return[UIColorclearColor];    }// strip 0X if it appearsif([cString hasPrefix:@"0X"])        cString = [cString substringFromIndex:2];if([cString hasPrefix:@"#"])        cString = [cString substringFromIndex:1];if([cString length] !=6)return[UIColorclearColor];// Separate into r, g, b substringsNSRangerange;    range.location=0;    range.length=2;//rNSString*rString = [cString substringWithRange:range];//grange.location=2;NSString*gString = [cString substringWithRange:range];//brange.location=4;NSString*bString = [cString substringWithRange:range];// Scan valuesunsignedintr, g, b;    [[NSScanner scannerWithString:rString] scanHexInt:&r];    [[NSScanner scannerWithString:gString] scanHexInt:&g];    [[NSScanner scannerWithString:bString] scanHexInt:&b];return[UIColorcolorWithRed:((float) r /255.0f) green:((float) g /255.0f) blue:((float) b /255.0f) alpha:1.0f];}

十三、获取今天是星期几

+ (NSString*) getweekDayStringWithDate:(NSDate*) date{NSCalendar* calendar = [[NSCalendaralloc] initWithCalendarIdentifier:NSGregorianCalendar];// 指定日历的算法NSDateComponents *comps = [calendar components:NSWeekdayCalendarUnit fromDate:date];// 1 是周日,2是周一 3.以此类推NSNumber* weekNumber = @([comps weekday]);NSIntegerweekInt = [weekNumber integerValue];NSString*weekDayString = @"(周一)";switch(weekInt) {case1:        {            weekDayString = @"(周日)";        }break;case2:        {            weekDayString = @"(周一)";        }break;case3:        {            weekDayString = @"(周二)";        }break;case4:        {            weekDayString = @"(周三)";        }break;case5:        {            weekDayString = @"(周四)";        }break;case6:        {            weekDayString = @"(周五)";        }break;case7:        {            weekDayString = @"(周六)";        }break;default:break;    }returnweekDayString;}

十四、UIView的部分圆角问题

UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(120,10,80,80)];view2.backgroundColor= [UIColor redColor];[self.viewaddSubview:view2];UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view2.boundsbyRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10,10)];CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];maskLayer.frame= view2.bounds;maskLayer.path= maskPath.CGPath;view2.layer.mask= maskLayer;//其中,byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight//指定了需要成为圆角的角。该参数是UIRectCorner类型的,可选的值有:* UIRectCornerTopLeft* UIRectCornerTopRight* UIRectCornerBottomLeft* UIRectCornerBottomRight* UIRectCornerAllCorners

从名字很容易看出来代表的意思,使用“|”来组合就好了。

十五、设置滑动的时候隐藏navigationBar

navigationController.hidesBarsOnSwipe = Yes;

1

十六、iOS画虚线

记得先 QuartzCore框架的导入

#importCGContextRef context =UIGraphicsGetCurrentContext();  CGContextBeginPath(context);  CGContextSetLineWidth(context,2.0);  CGContextSetStrokeColorWithColor(context, [UIColorwhiteColor].CGColor);CGFloatlengths[] = {10,10};  CGContextSetLineDash(context,0, lengths,2);  CGContextMoveToPoint(context,10.0,20.0);  CGContextAddLineToPoint(context,310.0,20.0);  CGContextStrokePath(context);  CGContextClosePath(context);

十七、自动布局中多行UILabel,需要设置其preferredMaxLayoutWidth属性才能正常显示多行内容。另外如果出现显示不全文本,可以在计算的结果基础上+0.5。

CGFloat h = [model.messageboundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width- kGAP-kAvatar_Size -2*kGAP, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size.height+0.5;

十八、 禁止程序运行时自动锁屏

[[UIApplication sharedApplication]setIdleTimerDisabled:YES];

十九、KVC相关,支持操作符

KVC同时还提供了很复杂的函数,主要有下面这些

①简单集合运算符

简单集合运算符共有@avg, @count , @max , @min ,@sum5种,都表示啥不用我说了吧, 目前还不支持自定义。

@interfaceBook:NSObject@property(nonatomic,copy)NSString* name;@property(nonatomic,assign)CGFloatprice;@end@implementationBook@endBook *book1 = [Book new];book1.name= @"The Great Gastby";book1.price=22;Book *book2 = [Book new];book2.name= @"Time History";book2.price=12;Book *book3 = [Book new];book3.name= @"Wrong Hole";book3.price=111;Book *book4 = [Book new];book4.name= @"Wrong Hole";book4.price=111;NSArray* arrBooks = @[book1,book2,book3,book4];NSNumber* sum = [arrBooks valueForKeyPath:@"@sum.price"];NSLog(@"sum:%f",sum.floatValue);NSNumber* avg = [arrBooks valueForKeyPath:@"@avg.price"];NSLog(@"avg:%f",avg.floatValue);NSNumber* count = [arrBooks valueForKeyPath:@"@count"];NSLog(@"count:%f",count.floatValue);NSNumber* min = [arrBooks valueForKeyPath:@"@min.price"];NSLog(@"min:%f",min.floatValue);NSNumber* max = [arrBooks valueForKeyPath:@"@max.price"];NSLog(@"max:%f",max.floatValue);打印结果2016-04-2016:45:54.696KVCDemo[1484:127089] sum:256.0000002016-04-2016:45:54.697KVCDemo[1484:127089] avg:64.0000002016-04-2016:45:54.697KVCDemo[1484:127089] count:4.0000002016-04-2016:45:54.697KVCDemo[1484:127089] min:12.000000

NSArray 快速求总和 最大值 最小值 和 平均值

NSArray*array = [NSArrayarrayWithObjects:@"2.0", @"2.3", @"3.0", @"4.0", @"10",nil];CGFloatsum = [[array valueForKeyPath:@"@sum.floatValue"] floatValue];CGFloatavg = [[array valueForKeyPath:@"@avg.floatValue"] floatValue];CGFloatmax =[[array valueForKeyPath:@"@max.floatValue"] floatValue];CGFloatmin =[[array valueForKeyPath:@"@min.floatValue"] floatValue];NSLog(@"%f\n%f\n%f\n%f",sum,avg,max,min);

二十、使用MBProgressHud时,尽量不要加到UIWindow上,加self.view上即可。如果加UIWindow上在iPad上,旋转屏幕的时候MBProgressHud不会旋转。之前有人遇到这个bug,我让他改放到self.view上即可解决此bug。

二十一、强制让App直接退出(非闪退,非崩溃)

- (void)exitApplication {        AppDelegate *app = [UIApplicationsharedApplication].delegate;UIWindow*window = app.window;        [UIViewanimateWithDuration:1.0f animations:^{            window.alpha=0;        } completion:^(BOOLfinished) {            exit(0);        }];    }

二十二、Label行间距

NSMutableAttributedString *attributedString =      [[NSMutableAttributedString alloc] initWithString:self.contentLabel.text];NSMutableParagraphStyle *paragraphStyle =  [[NSMutableParagraphStyle alloc] init];  [paragraphStyle setLineSpacing:3];//调整行间距          [attributedString addAttribute:NSParagraphStyleAttributeName                          value:paragraphStyle                          range:NSMakeRange(0, [self.contentLabel.textlength])];self.contentLabel.attributedText= attributedString;

二十三、CocoaPods pod install/pod update更新慢的问题

pod install –verbose –no-repo-update

pod update –verbose –no-repo-update

如果不加后面的参数,默认会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。

二十四、MRC和ARC混编设置方式

在XCode中targets的build phases选项下Compile Sources下选择 不需要arc编译的文件

双击输入 -fno-objc-arc 即可

MRC工程中也可以使用ARC的类,方法如下:

在XCode中targets的build phases选项下Compile Sources下选择要使用arc编译的文件

双击输入 -fobjc-arc 即可

二十五、把tableview里cell的小对勾的颜色改成别的颜色

_yourTableView.tintColor = [UIColor redColor];

二十六、解决同时按两个按钮进两个view的问题

[button setExclusiveTouch:YES];

二十七、修改textFieldplaceholder字体颜色和大小

textField.placeholder = @"请输入用户名";  [textFieldsetValue:[UIColor redColor]forKeyPath:@"_placeholderLabel.textColor"];  [textFieldsetValue:[UIFont boldSystemFontOfSize:16]forKeyPath:@"_placeholderLabel.font"];

1

2

3

二十八、禁止textField和textView的复制粘贴菜单

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender{if([UIMenuController sharedMenuController]) {      [UIMenuController sharedMenuController].menuVisible=NO;    }returnNO;}

**二十九:如何进入我的软件在app store 的页面

先用iTunes Link Maker找到软件在访问地址,格式为itms-apps://ax.itunes.apple.com/…,然后**

#define  ITUNESLINK  @"itms-apps://ax.itunes.apple.com/..."NSURL*url = [NSURLURLWithString:ITUNESLINK];if([[UIApplicationsharedApplication] canOpenURL:url]){    [[UIApplicationsharedApplication] openURL:url];}

三十、二级三级页面隐藏系统tabba

1、单个处理

YourViewController *yourVC = [YourViewController new];yourVC.hidesBottomBarWhenPushed=YES;[self.navigationControllerpushViewController:yourVC animated:YES]

2.统一在基类里面处理

新建一个类BaseNavigationController继承UINavigationController,然后重写 -(void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated这个方法。所有的push事件都走此方法。

@interfaceBaseNavigationController:UINavigationController@end-(void)pushViewController:(UIViewController*)viewController animated:(BOOL)animated{        [superpushViewController:viewController animated:animated];if(self.viewControllers.count>1) {            viewController.hidesBottomBarWhenPushed=YES;        }    }

三十一、取消系统的返回手势

self.navigationController.interactivePopGestureRecognizer.enabled= NO;

1

三十二、修改UIWebView中字体的大小,颜色

1、UIWebView设置字体大小,颜色,字体:

UIWebView无法通过自身的属性设置字体的一些属性,只能通过html代码进行设置

在webView加载完毕后,在

- (void)webViewDidFinishLoad:(UIWebView *)webView方法中加入js代码      NSString *str= @"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '60%'";      [_webView stringByEvaluatingJavaScriptFromString:str];

或者加入以下代码

NSString*jsString = [[NSStringalloc] initWithFormat:@"document.body.style.fontSize=%f;document.body.style.color=%@",fontSize,fontColor];          [webView stringByEvaluatingJavaScriptFromString:jsString];

1

2

三十三、移除所有子视图,无需循环只需要一句代码 

[view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

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

推荐阅读更多精彩内容

  • 通过自己开发以及借鉴的别人的经验,总结一下一些开发中经常用到的技巧知识点,也算是做个小笔记吧。 1、控件的局部圆角...
    男儿心阅读 799评论 0 1
  • 引自:http://m.blog.csdn.net/article/details?id=52180380 记录一...
    雪_晟阅读 309评论 0 0
  • KVC(Key-value coding)键值编码,单看这个名字可能不太好理解。其实翻译一下就很简单了,就是指iO...
    朽木自雕也阅读 1,404评论 6 1
  • 今天放一个没上完色比上完色有意思系列(捂脸)。成图是这样的。 这张画于四川平乐古镇。这种最普通的民居是写生的好对象...
    Isar阅读 835评论 12 34
  • 1、先做到用力过猛,培养习惯和锻炼意志力,再控制用力尝试收放自如 2、找若干件自己不习惯和不擅长的事情,用过载的方...
    我是销冠阅读 244评论 0 0