一、autolayout如何把某控件的长宽设置比例
用到控件aspact ratio功能,让其高宽比例是1:1。按着control键拉一条线指向它本身,这时候就会出现这个选项。选择之后即可设定比例。
二、UITableView 诡异的滚动
初始化tableView的时候,添加如下代码,预估行高
self.tableView.estimatedRowHeight = 0;
三、 图片URL 保存到 手机相册 保存原图
使用 photos.framework (仅支持iOS9 以上),注意线程问题
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:self.pm.img_url]];
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
dispatch_async(dispatch_get_main_queue(), ^{
[[XFLoadingHUD sharedLoadingHUD] showLoadingIsNeedMask:YES text:@"下载中"];
});
[[PHAssetCreationRequest creationRequestForAsset] addResourceWithType:PHAssetResourceTypePhoto data:data options:nil];
} completionHandler:^(BOOL success, NSError * _Nullable error) {
// NSLog(@"success = %d, error = %@", success, error);
dispatch_async(dispatch_get_main_queue(), ^{
[[XFLoadingHUD sharedLoadingHUD] dismiss];
if (success) {
[XFTipManager showTip:@"恭喜,照片已经下载到手机相册~"];
} else {
[XFTipManager showTip:@"下载失败"];
}
});
}];
注意:使用网上说的三种方法,都会压缩图片,可选择使用。
四、Xcode 升级到9.3版本,使用cocoapods 执行 pod init
报错
报错如下:
RuntimeError - [Xcodeproj] Unknown object version.
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/xcodeproj-1.5.2/lib/xcodeproj/project.rb:217:in `initialize_from_file'
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/xcodeproj-1.5.2/lib/xcodeproj/project.rb:102:in `open'
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/cocoapods-1.4.0.beta.1/lib/cocoapods/command/init.rb:41:in `validate!'
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/claide-1.0.2/lib/claide/command.rb:333:in `run'
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/cocoapods-1.4.0.beta.1/lib/cocoapods/command.rb:52:in `run'
/Users/bh/.rvm/gems/ruby-2.3.0@global/gems/cocoapods-1.4.0.beta.1/bin/pod:55:in `<top (required)>'
/Users/bh/.rvm/rubies/ruby-2.3.0/bin/pod:23:in `load'
/Users/bh/.rvm/rubies/ruby-2.3.0/bin/pod:23:in `<main>'
/Users/bh/.rvm/gems/ruby-2.3.0@global/bin/ruby_executable_hooks:15:in `eval'
/Users/bh/.rvm/gems/ruby-2.3.0@global/bin/ruby_executable_hooks:15:in `<main>'
从查了一下 都说Xcode 和 cocoapods 不兼容导致的,我把上面写的方法(终端敲命令的方法)都试了下,并不管用。
我发现Xcode9.3 创建的工程,在Project这个位置如图:
默认为Xcode 9.3-compatible,将它修改9.3以下版本可以解决该问题。
五、关于坐标的转换
有两个方法
- (CGRect)convertRect:(CGRect)rect fromView:(nullable UIView *)view;
- (CGRect)convertRect:(CGRect)rect toView:(nullable UIView *)view;
UIView *grayView = [[UIView alloc] init];
grayView.backgroundColor = [UIColor grayColor];
grayView.frame = CGRectMake(50, 50, 200, 200);
[self.view addSubview:grayView];
UIView *yellowView = [[UIView alloc] init];
yellowView.backgroundColor = [UIColor yellowColor];
yellowView.frame = CGRectMake(100, 100, 100, 100);
[self.view addSubview:yellowView];
CGRect rect = [self.view convertRect:yellowView.frame fromView:grayView];
NSLog(@"%@",NSStringFromCGRect(rect));
这句代码的意思:
grayView中的yellowView的Frame区域,相对于self.view的位置
所以,rect = {{150,150}, {100,100}}
1.这个方法是计算,相对于self.view的位置
2.在grayView中的某个位置(这里是yellowView的Frame)
3.这个在grayView中的这个位置,相对于self.view 的位置
2018-04-25 15:50:22.630270+0800 各种坐标的转换[22746:11066041] {{150, 150}, {100, 100}}
UIView *grayView = [[UIView alloc] init];
grayView.backgroundColor = [UIColor grayColor];
grayView.frame = CGRectMake(50, 50, 200, 200);
[self.view addSubview:grayView];
UIView *yellowView = [[UIView alloc] init];
yellowView.backgroundColor = [UIColor yellowColor];
yellowView.frame = CGRectMake(100, 100, 100, 100);
[self.view addSubview:yellowView];
CGRect rect = [self.view convertRect:yellowView.frame toView:grayView];
NSLog(@"%@",NSStringFromCGRect(rect));
这句代码的意思是:
self.view 中的 yellowView.frame 这个区域,相对于grayView的位置
所以,rect={{50,50},{100,100}}
1.找到计算相对于谁的位置,这个方法是相对于grayView
2.self.view 中yellowView.frame 这个区域
3.相对于grayView的位置
2018-04-25 15:55:48.288156+0800 各种坐标的转换[22832:11069775] {{50, 50}, {100, 100}}
六、隐藏状态栏后,导航栏上移20个点
[UIApplication sharedApplication].statusBarHidden = YES;
发现确实,隐藏了状态栏,但是导航栏向上移动了20像素,很别扭
曲线救国:KVC
UIView *statusBar = [[UIApplication sharedApplication] valueForKey:@"statusBar"];
statusBar.alpha = 0.0;
七、OC项目中加入c文件,报错,系统库找不到头文件
Could not build module 'Foundation'"
等错误
这种错误,原因在于pch文件,新版的Xcode已经不在自动创建pch文件了,所以在创建pch文件时,需要添加一个宏定义,将OC的头文件包含于这里面
#ifdef __OBJC__ #end
这个头文件目的是:只有OC的文件,才会自动调用pch里面的头文件,不是OC语言,比如c,会导致标题错误。
八、OC项目引入使用swift编写的三方库后,报错
The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported value for targets which use Swift
解决办法
- 选中Pods项目
- TARGETS选择对应的使用swift编写的三方库
- 切换到Build Setting选项
- 在搜索框输入swift language
- 将Swift Language Version中的Unspecified改为对应的Swift版本