iOS:小技巧(转)
记录下一些不常用技巧,以防忘记,复制用。
1、获取当前的View在Window的frame:
1
2
|
UIWindow * window=[[[UIApplication sharedApplication] delegate] window]; CGRect rect=[_myButton convertRect:_myButton.bounds toView:window]; |
2、UIImageView 和UILabel 等一些控件,需要加这句才能setCorn
1
|
_myLabel.layer.masksToBounds = YES ; |
3、手机上的沙盒路径要加"Documents",不然存储写入失败!mac上不用!
1
2
3
|
[_myArray writeToFile:[[ NSHomeDirectory () stringByAppendingPathComponent:@ "Documents" ] stringByAppendingPathComponent:@ "shopCategory.plist" ] atomically: YES ]; NSArray *tempAllData = [ NSArray arrayWithContentsOfFile:[[ NSHomeDirectory () stringByAppendingPathComponent:@ "Documents" ] stringByAppendingPathComponent:@ "shopCategory.plist" ]]; |
后续补充:
Document:一般需要持久的数据都放在此目录中,可以在当中添加子文件夹,iTunes备份和恢复的时候,会包括此目录。
Library:设置程序的默认设置和其他状态信息
temp:创建临时文件的目录,当iOS设备重启时,文件会被自动清除
4、图片拉伸不失真,如聊天软件对话气泡
1)、方法1,比较老的,
1
2
|
UIImage *tempImage2 = [UIImage imageNamed:@ "sub.png" ]; tempImage2 = [tempImage2 stretchableImageWithLeftCapWidth:tempImage2.size.width/2 topCapHeight:0]; |
2)、方法2,比较新的
1
2
3
4
5
6
7
8
|
UIImage *tempImage3 = [UIImage imageNamed:@ "sub" ]; CGFloat tempH = tempImage3.size.height/2; CGFloat tempW = tempImage3.size.width/2; UIEdgeInsets tempEdg = UIEdgeInsetsMake(tempH, tempW, tempH, tempW); tempImage3 = [tempImage3 resizableImageWithCapInsets:tempEdg resizingMode:UIImageResizingModeStretch]; |
5、视频截取缩略图,其中CMTimeMakeWithSeconds(5,1),调整截图帧数/秒数,一般不用特意去修改,不做参数传入,除非片头一段时间都一样的视频。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#import <AVFoundation/AVFoundation.h> -(UIImage *)getThumbnailImage:( NSString *)videoURL { AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[ NSURL fileURLWithPath:videoURL] options: nil ]; AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:asset]; gen.appliesPreferredTrackTransform = YES ; //控制截取时间 CMTime time = CMTimeMakeWithSeconds(5, 1); NSError *error = nil ; CMTime actualTime; CGImageRef image = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error]; UIImage *thumb = [[UIImage alloc] initWithCGImage:image]; CGImageRelease(image); return thumb; } |
6、cell下划线左边顶住屏幕左边。
1
2
3
|
cell.preservesSuperviewLayoutMargins = NO ; cell.layoutMargins = UIEdgeInsetsZero; cell.separatorInset = UIEdgeInsetsZero; |
7、去除xcode8冗余信息,虽然已经记住了。
OS_ACTIVITY_MODE disable
8、播放音频
1)工程内音频
1-1)、获取音频路径
1
2
3
|
NSString *path = [[ NSBundle mainBundle] pathForResource:@ "shakebell" ofType:@ "wav" ]; NSURL *url = [ NSURL fileURLWithPath:path]; |
1-2)、创建音频播放ID
1
2
|
SystemSoundID soundID; AudioServicesCreateSystemSoundID((__bridge CFURLRef _Nonnull)(url), &soundID); |
1-3)、Play
1
|
AudioServicesPlaySystemSound(soundID); |
2)系统音频,参数为1000-1351,具体查表,如1007为“sms-received1”
1
|
AudioServicesPlaySystemSound(1007); |
9、字体自适应
1)、固定的Frame,自适应Font大小,如数量增减,1和1000。
1
|
[label1 setAdjustsFontSizeToFitWidth: YES ]; |
2)、固定的Font,自适应Frame,用于信息类显示
1
|
[label2 sizeToFit]; |
3)、固定的Font,获取自适应Frame值,反过来设置Label的Frame,用于信息类显示。这里的100是等下设置Label的width,也是返回的rect.frame.size.width
1
|
CGRect rect = [templabel.text boundingRectWithSize:CGSizeMake(100, CGFLOAT_MAX) options: NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:@{ NSFontAttributeName :templabel.font} context: nil ]; |
10、AFNetworking 检测网络连接状态
1
2
3
4
5
|
[[AFNetworkReachabilityManager sharedManager]startMonitoring]; [[AFNetworkReachabilityManager sharedManager]setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) { NSLog (@ "%ld" ,status); }]; |
11、编辑相关
1)键盘事件通知
1-1)、弹出键盘可能盖住TextField。监听键盘的通知
1
|
[[ NSNotificationCenter defaultCenter]addObserver: self selector: @selector (moveView:) name:UIKeyboardDidChangeFrameNotification object: nil ]; |
1-2)、moveView方法里接收通知,tempTime是键盘动画时间,tempY是键盘当前的y轴位置。(接着要移动评论框或者移动后面的ScrollView都可以)
1
2
3
4
5
6
7
8
9
10
11
|
CGFloat tempTime = [[noti.userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue]; CGFloat tempY = [[noti.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey]CGRectValue].origin.y //重置约束条件 //self.theBottomSpace.constant = ?; [UIView animateWithDuration:duration animations:^{ //更新约束 [ self .view layoutIfNeeded]; }]; |
2)dealloc记得移除
1
|
[[ NSNotificationCenter defaultCenter]removeObserver: self ]; |
3)touchesBegan:withEvent && scrollViewDidScroll -->屏幕点击&&屏幕滑动要取消编辑状态
1
|
[ self .view endEditing: YES ]; |
12、上传图片(头像)
1-1)、把Image打成NSData
1
|
NSData *imagedata = UIImageJPEGRepresentation(tempImage, 1.0); |
1-2)、AFNetworking的POST方法填如下。formData:POST方法里的Block参数,name:跟服务器有关,filename:随意填,mimeType:就image/jpg。
1
|
[formData appendPartWithFileData:imagedata name:@ "imgFile" fileName:@ "idontcare.jpg" mimeType:@ "image/jpg" ]; |
13、强制布局
1
|
[ self .view layoutIfNeeded]; |
14、图片双击缩放
1)scrollView才可以缩放,所以要把ImageView加在scrollView,给scrollView(这里的 self )添加手势识别。要设最大/小缩放比例!
1
2
3
4
5
|
UITapGestureRecognizer *imageTwoTap = [[UITapGestureRecognizer alloc]initWithTarget: self action: @selector (twoTapAction:)]; imageTwoTap.numberOfTapsRequired = 2; [ self addGestureRecognizer: imageTwoTap]; |
2)第一次点哪放大哪,第二次恢复原来大小
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#define SCALE_WIDTH 60 //要放大的局部宽度大小 #define SCALE_HEIGHT 60 //要放大的局部高度大小 -( void )twoTapAction:(UITapGestureRecognizer *)tempTap { if ( self .zoomScale != 1.0) { [ self setZoomScale:1.0 animated: YES ]; } else { CGPoint tempPoint = [tempTap locationInView: self ]; [ self zoomToRect:CGRectMake(tempPoint.x-SCALE_WIDTH/2, tempPoint.y-SCALE_HEIGHT/2, SCALE_WIDTH, SCALE_HEIGHT) animated: YES ]; } } |
15、加载XIB
1)、从多个cell样式的XIB加载。只有1个cell样式,可直接lastObject加载。(先根据不同的ID取,取不到再加载。)
1-1)、获取XIB里的所有对象
1
|
NSArray *cellArry = [[ NSBundle mainBundle] loadNibNamed: NSStringFromClass ([MyTableCell class ]) owner: self options: nil ]; |
1-2)、读取对应的Cell样式,此时的参数type为枚举,或基本数据类型。
1
|
cell = [cellArry objectAtIndex:type]; |
2)、在 UIView + xxx 的类别文件里,可以添加这个类。方便加载单种Cell样式的XIB。
1
2
3
4
|
+ (instancetype)viewFromXib { return [[[ NSBundle mainBundle] loadNibNamed: NSStringFromClass ( self ) owner: nil options: nil ] lastObject]; } |
16、常用延时执行
1)、dispatch_after
dispatch_after 代码块,一敲就出来,好像是Xcode8之后的。
2)、performSelector
-(void)performSelector: withObject: afterDelay: ;
iOS:小技巧(转)的更多相关文章
- iOS小技巧总结,绝对有你想要的
原文链接 在这里总结一些iOS开发中的小技巧,能大大方便我们的开发,持续更新. UITableView的Group样式下顶部空白处理 //分组列表头部空白处理 UIView *view = [[UIV ...
- iOS小技巧 - 和屏幕等宽的Table分割线
前言 因为本人也是学习iOS才一个多月,在写程序的过程中经常会遇到一些看似应该很简单,但是要解决好却要知道一点小trick的问题. 因此后面会陆续记一些这类问题,一来加深印象,二来也可以做个备忘录. ...
- iOS小技巧:用runtime 解决UIButton 重复点击问题
http://www.cocoachina.com/ios/20150911/13260.html 作者:uxyheaven 授权本站转载. 什么是这个问题 我们的按钮是点击一次响应一次, 即使频繁的 ...
- iOS小技巧3
将颜色合成图片 将颜色合成图片 +(UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0.0f, 0.0f, 1 ...
- iOS小技巧2
这段代码是实现了类似QQ空间"我的空间"里面的圆形头像 //圆形的头像 UIImageView * headImage = [[UIImageView alloc]initWith ...
- 总有你需要的之 ios 小技巧 (下)
图片上绘制文字 写一个UIImage的category NSMutableParagraphStyle* paragraphStyle = [[NSParagraphStyle defaultPara ...
- IOS小技巧——使用FMDB时如何把一个对像中的NSArray数组属性存到表中
http://blog.csdn.net/github_29614995/article/details/46797917 在开发的当中,往往碰到要将数据持久化的时候用到FMDB,但是碰到模型中的属性 ...
- 你想要的iOS 小技巧总结
UITableView的Group样式下顶部空白处理 //分组列表头部空白处理 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(, , ...
- IOS小技巧整理
1 随机数的使用 头文件的引用 #import <time.h> #import <mach/mach_time.h> srandom()的使用 ...
- <iOS小技巧> 昵称格式判断
一.使用方式 + 如下代码块功能:判断字体,判断字体输入格式 NSString *firstStr = [name substringToIndex:1]; NSArray *num ...
随机推荐
- 实验楼课程管理程序-深入学习《C++ Primer第五版》实验报告&学习笔记1
本片博客为实验楼的训练营课程深入学习<C++ Primer第五版>的实验报告和学习笔记. 原课程地址为:https://www.shiyanlou.com/courses/405# 原文出 ...
- iOS7——UIControlEventTouchDown延迟响应问题
问题描述 在iOS7下开发,真机调试时,UIButton的其他事件响应都正常,但是UIControlEventTouchDown事件响应会延迟,而且不同响应区域发生的延时情况不同,有时延迟1s以后响应 ...
- Linux 之HTTP服务,APACHE
1.基础知识 HTTP:超文本传输协议,超链接URI:Uniform Resource Identifier,全局范围内唯一命名符MIME:Multipurpose Internet Mail Ext ...
- paramiko模块
安装: # pycrypto,由于 paramiko 模块内部依赖pycrypto,所以先下载安装pycrypto (1) wget http://ftp.dlitz.net/pub/dlitz/cr ...
- HashMap、HashTable、LinkedHashMap和TreeMap用法和区别
Java为数据结构中的映射定义了一个接口java.util.Map,它有四个实现类,分别是HashMap.HashTable.LinkedHashMap和TreeMap.本节实例主要介绍这4中实例的用 ...
- ArcEngine读取数据(数据访问) (转)
读取和访问数据是进行任何复杂的空间分析及空间可视化表达的前提,ArcGIS支持的数据格式比较丰富,下面就这些格式Shapefile.Coverage.Personal Geodatabase.Ente ...
- ie 出现 append无效
今天发现用ie append 无效,但是在谷歌浏览器上可以使用,问题在于 拼接字符串的时候出现多了一个标签. 解决方法:检查是否有多余或少写html标签.
- python之路-Day8
抽象接口 class Alert(object): '''报警基类''' def send(self): raise NotImplementedError class MailAlert(Alert ...
- 分享一个MarkDown的配色主题
  下载地址(戳我)
- 四、解决MyEclipse控制台输出中文乱码的问题
问题描述: 在Java程序中,在MyEclipse开发环境下,通过标准输入输入中文,并把输入的中文信息从标准输出显示出来,这时中文出现乱码情况.解决方法:解决方法需要两个步骤(本文测试环境 ...