iOS--代码片段

1. 获取字符串的宽度

CGSize size = [@str sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14]}];

2. 根据键盘高度改变输入框的位置

监听键盘frame改变(UIKeyboardWillChangeFrameNotification)

[[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillChangeFrameNotification:)
                                                 name:UIKeyboardWillChangeFrameNotification
                                               object:nil];

实现监听函数

-(void)keyboardFrameDidChange:(NSNotification*)notice  
{  
    NSDictionary * userInfo = notice.userInfo;  
    NSValue * endFrameValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];  
    CGRect endFrame = endFrameValue.CGRectValue;  
    NSLog(@"%@",NSStringFromCGRect(endFrame)); 
}

3. 设置URL Schema启动自身App

在info.plist中进行设置
新增URL types,新增URL Schema,新增URL identifier,效果如图:
这里写图片描述

4. 16进制转换成10进制

把颜色值a3b8e5转换成对应RGB的十进制

int red = strtoul([[@“a3b8e5” substringWithRange:NSMakeRange(0, 2)] UTF8String],0,16);

int green = strtoul([[@“a3b8e5” substringWithRange:NSMakeRange(2, 2)] UTF8String],0,16);

int blue = strtoul([[@“a3b8e5” substringWithRange:NSMakeRange(4, 2)] UTF8String],0,16);

5. iOS9使用http 请求

一共两种方法
方法一:全局使用http 请求
修改info.plist文件

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>

方法二:局部使用http 请求,过滤自己认为需要的http 请求
修改info.plist文件,以允许qq.com和sina.com.cn及其子域名http请求为例

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>qq.com</key>
            <dict>
                <key>NSIncludesSubdomains</key>
                <true/>
            </dict>
            <key>sina.com.cn</key>
            <dict>
                <key>NSIncludesSubdomains</key>
                <true/>
            </dict>
        </dict>
   </dict>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值