1:Block 循环引用的问题
-(void)test
{
__weak typeof(self) WeakSelf = self;
void(^testBlock)(void) = ^(void) {
__strong typeof(self) StrongSelf = WeakSelf;
[StrongSelf test2];
};
testBlock();
}
宏定义
// weak
#define WeakSelf(type) __weak typeof(type) weak##type = type;
// strong
#define StrongSelf(type) __strong typeof(type) type = weak##type;
2: 修改textField的占位符(placeholder)的字体颜色、大小
比较简洁的方法 调用kvc的方法
self.textField.placeholder = @"username is in here!";
[self.textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[self.textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];
修改attributedString进行设置
NSString *string = @"UITextFiled修改占位符的方法";
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:string];
[attributedString addAttribute:NSForegroundColorAttributeName
value:[UIColor redColor]
range:NSMakeRange(0, [string length])];
[attributedString addAttribute:NSFontAttributeName
value:[UIFont systemFontOfSize:16]
range:NSMakeRange(0, [string length])];
self.textField.attributedPlaceholder = attributedString;
3:生成参数字典的时候用 NSDictionaryOfVariableBindings
For Example
NSString *title = @"请求的title";
NSNumber *age = @56;
NSArray *movies = @[@"肖申克的救赎",@"可可西里的美丽传说"];
NSDictionary *dict = NSDictionaryOfVariableBindings(title,age,movies);
image.png
4:去除数组中重复的对象
补充:这种方法筛选的数据是无序的~~~~~~~~~~
NSArray *oldArr = @[@"5",@"3",@"6",@"9",@"5",@"5",@"5",@"5"];
NSArray *newArr = [oldArr valueForKeyPath:@"@distinctUnionOfObjects.self"];
image.png
5:ATS设置
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
6:字符属性
字符属性可以应用于 attributed string 的文本中。
NSString *const NSFontAttributeName;(字体)
NSString *const NSParagraphStyleAttributeName;(段落)
NSString *const NSForegroundColorAttributeName;(字体颜色)
NSString *const NSBackgroundColorAttributeName;(字体背景色)
NSString *const NSLigatureAttributeName;(连字符)
NSString *const NSKernAttributeName;(字间距)
NSString *const NSStrikethroughStyleAttributeName;(删除线)
NSString *const NSUnderlineStyleAttributeName;(下划线)
NSString *const NSStrokeColorAttributeName;(边线颜色)
NSString *const NSStrokeWidthAttributeName;(边线宽度)
NSString *const NSShadowAttributeName;(阴影)(横竖排版)
NSString *const NSVerticalGlyphFormAttributeName;
7:GCD便利数据
-(void)apply
{
NSLog(@"BEGAN");
dispatch_apply(5, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(size_t index) {
NSLog(@"下标-----%ld 当前线程-----%@",(long)index,[NSThread currentThread]);
});
//便利完之后 会执行
NSLog(@"END");
}
输出结果:几乎是同时进行的便利 效率更高 但是是无序的
Snip20180130_1.png
8:iOS10之后,访问用户手机相册 或者 其他权限,需要在info plist 文件配置相关的信息
如果不配置 应用会闪退 相关的错误信息
This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data.
需要写清楚为什么要用到这个权限,如果只是简单的写的话.苹果审核会不通过!
升到iOS10之后,需要设置权限的有:
麦克风权限:Privacy - Microphone Usage Description 是否允许此App使用你的麦克风?
相机权限: Privacy - Camera Usage Description 是否允许此App使用你的相机?
相册读取权限: Privacy - Photo Library Usage Description 是否允许此APP读取您的媒体资料库?
相册写入权限: Privacy - Photo Library Usage Description 是否允许此App访问你的媒体资料库?
通讯录权限: Privacy - Contacts Usage Description 是否允许此App访问你的通讯录?
蓝牙权限:Privacy - Bluetooth Peripheral Usage Description 是否许允此App使用蓝牙?
语音转文字权限:Privacy - Speech Recognition Usage Description 是否允许此App使用语音识别?
日历权限:Privacy - Calendars Usage Description
定位权限:Privacy - Location When In Use Usage Description
定位权限: Privacy - Location Always Usage Description
位置权限:Privacy - Location Usage Description
媒体库权限:Privacy - Media Library Usage Description
健康分享权限:Privacy - Health Share Usage Description
健康更新权限:Privacy - Health Update Usage Description
运动使用权限:Privacy - Motion Usage Description
音乐权限:Privacy - Music Usage Description
提醒使用权限:Privacy - Reminders Usage Description
Siri使用权限:Privacy - Siri Usage Description
电视供应商使用权限:Privacy - TV Provider Usage Description
视频用户账号使用权限:Privacy - Video Subscriber Account Usage Description
关于照片的问题
一个是读取内容一个是写入文件内容
直接以 source code 的形式写入plist 文件
<key>NSPhotoLibraryUsageDescription</key>
<string>APP需要您的同意,才能访问读取媒体资料库</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>App需要您的同意,才能访问写入媒体资料库</string>
其他一些常用的
<key>NSContactsUsageDescription<key>
<string>通讯录</string>
<key>NSMicrophoneUsageDescription<key>
<string>麦克风</string>
<key>NSLocationAlwaysUsageDescription<key>
<string>地理位置</string>
<key>NSLocationWhenInUseUsageDescription<key>
<string>地理位置</string>
9屏蔽cocoapods 的警告
target 'Test' do
inhibit_all_warnings!
pod 'xxxxxxxxx'
end
10解决 Alfred 每次开机都提示请求通讯录权限的问题
安装完 Alfred 以后,每次开机都会提示请求通讯录权限,把设置里的通讯录关掉也没用,每次都提示又非常烦人,这里把解决方法记录一下。
依次打开 应用程序 - Alfred 3.app - 右键显示包内容 -
Contents - Frameworks - Alfred Framework.framework - Versions - A 下找到一个叫 Alfred Framework 的文件。
接着打开终端,输入以下命令(最后的 - 后面有个空格)。
sudo codesign -f -d -s -
然后将刚才的 Alfred Framework 文件直接拖到终端,接着回车输入用户密码。
最后提示 replacing existing signature 就表示成功了。
或者直接在终端中输入
sudo codesign -f -d -s - /Applications/Alfred\ 3.app/Contents/Frameworks/Alfred\ Framework.framework/Versions/A/Alfred\ Framework
11 删除项目 Git .DS_Store
项目目录中
git clean -d -fx
关闭.DS_Store
步骤一:删除所有隐藏.DS_store文件,打开命令行窗口
sudo find / -name ".DS_Store" -depth -exec rm {} \
步骤二: 设置不再产生选项, 执行如下命令
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
12查看Mac本机地址
ifconfig en0
Snip20180625_3.png
13:#pragma 处理警告 clang diagnostic 的使用
#pragma clang diagnostic push #pragma clang diagnostic ignored "-相关命令" // coding #pragma clang diagnostic pop
下边是方法警告的详细说明
- 方法弃用告警: "-Wdeprecated-declarations"
- 不兼容指针类型:"-Wincompatible-pointer-types"
- 循环引用 :"-Warc-retain-cycles"
- 未使用变量:"-Wunused-variable"
- switch 未使用default:"-Wcovered-switch-default"
- performSelector系列方法编译器警告:"-Warc-performSelector-leaks"
内存泄漏警告 :"-Warc-performSelector-leaks"
注:警告信息在日志里边可以找到
Snip20180801_1.png
14:GCD定时器的使用
-(void)gcdTimerTest{
dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, dispatch_get_main_queue());
//设置时间
uint64_t start = 1.0;
uint64_t spacetimer = 2.0;
//参数以此是 timer 开始时间 间隔时间 误差时间
//NSEC_PER_SEC 毫秒
dispatch_source_set_timer(timer, dispatch_time(DISPATCH_TIME_NOW, start*NSEC_PER_SEC), spacetimer*NSEC_PER_SEC, 0);
//设置定时器的回调。还有一个设置方法
// dispatch_source_set_event_handler_f(<#dispatch_source_t _Nonnull source#>, <#dispatch_function_t _Nullable handler#>)
dispatch_source_set_event_handler(timer, ^{
NSLog(@"GCD的定时器");
});
//执行定时器
dispatch_resume(timer);
//需要声明强引用 避免 释放
self.timer = timer;
// 消除定时器
// dispatch_source_cancel(self.timer)
}
15:Xcode低版本支持高版本的iOS系统
打开Xcode显示包内容找到DeviceSupport文件夹
Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
将真机包拷贝进去
16:iOS 本地化:如何找到项目中所有汉字
Snip20181120_1.png@"[^"]*[\u4E00-\u9FA5]+[^"\n]*?"
不能发现 xib中的汉字。
网友评论