美文网首页
iOS开发小记!

iOS开发小记!

作者: 因为太有钱 | 来源:发表于2017-09-29 16:46 被阅读9次

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

下边是方法警告的详细说明

  1. 方法弃用告警: "-Wdeprecated-declarations"
  2. 不兼容指针类型:"-Wincompatible-pointer-types"
  3. 循环引用 :"-Warc-retain-cycles"
  4. 未使用变量:"-Wunused-variable"
  5. switch 未使用default:"-Wcovered-switch-default"
  6. performSelector系列方法编译器警告:"-Warc-performSelector-leaks"
  7. 内存泄漏警告 :"-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中的汉字。

相关文章

  • iOS 开发小记-01

    最近又开始写不少业务代码了,有些小知识点小坑,用这个系列记录一下。iOS 开发小记-01iOS 开发小记-02 1...

  • iOS 开发小记-02

    最近又开始写不少业务代码了,有些小知识点小坑,用这个系列记录一下。iOS 开发小记-01iOS 开发小记-02 1...

  • 值得一读

    iOS 开发 Clang Attributes 黑魔法小记 UIApplication的详细介绍 MVVM奇葩说

  • Web版扫雷开发小记(3)

    前篇: web版扫雷开发小记(1)web版扫雷开发小记(2)web版扫雷开发小记(3)web版扫雷开发小记(4) ...

  • IOS开发小记

    1.对服务器进行Https请求 -服务器:获取证书后需提供文件***.pem文件给IOS开发 -IOS开发:将得到...

  • iOS开发小记!

    1:Block 循环引用的问题 宏定义 2: 修改textField的占位符(placeholder)的字体颜色、...

  • iOS开发小记

    这篇文章主要内容是整理了部分iOS开发基础知识和收集了一些iOS开发中的小技巧。由于平时自己没有养成做笔记的习惯,...

  • iOS开发小记

    字体拉伸 clang重写.m文件为.cpp文件 忽略警告 忽略单个警告 其中相关命令通过右击对应的警告,Revea...

  • mylayout布局框架:UIScrollView+UITabl

    ios mylayout布局库,小记一下开发中思考的方案 功能需求 页面基于scrollview,展示内容比较多 ...

  • Web扫雷开发小记(1)

    目录Web扫雷开发小记(2)Web扫雷开发小记(3)Web扫雷开发小记(4) 刚好今天做阿里前端笔试问到扫雷了,那...

网友评论

      本文标题:iOS开发小记!

      本文链接:https://www.haomeiwen.com/subject/bzgiextx.html