摘要:
那是因为instruments找不到编译好的dSYM 其它的什么修改配置都没什么用 最好的办法就是直接删除资源文件APP名。 资源库 -> Developer -> Xcode -> DerivedData -> 找到你的app名字对应文件夹 然后果断删除就行了。删除后重新编译又会生成新的文件 原 阅读全文
摘要:
为何以前写的没看到了 为什么之前写的又看不到了? XXX ubuntu 上安装 shadowsocks server 安装shadowsocks了。 接下来配置也比较简单,找到shadowsocks文件夹: sudo find / -name shadows* 新建一个 config.json,或者 阅读全文
摘要:
出现这个问题是因为 静态库是用Xcode9打包的。 如果用xcode8编译的话就会出现这个问题 解决办法 从Xcode9里把这个库拷贝出来。然后放到Xcode8上面 One way to fix this is to go to: /Applications/Xcode-beta.app/Conte 阅读全文
摘要:
//dic 转json 如果用系统自带的会出现空格。 + (NSString *)returnJSONStringWithDictionary:(NSDictionary *)dictionary{ //系统自带 // NSError * error; // NSData * jsonData = [NSJSONSerializa... 阅读全文
摘要:
//获取一个32位随机数 static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; //!@#$%^*() //1、获取一个随机整数范围在:[0,100)包括0,不包括100 int x = arc4random() % 100; // 获取一个随机... 阅读全文
摘要:
#import //获取IP #import //只能获取WIFI下的IP地址 + (NSString *)getIPAddress { NSString *address = @"error"; struct ifaddrs *interfaces = NULL; struct ifaddrs *temp_addr = NULL; int succes... 阅读全文
摘要:
_myAccount = [[UITextField alloc]init]; _myAccount.frame = CGRectMake(0, 0, 200, 100); _myAccount.backgroundColor = [UIColor clearColor]; [_myAccount.layer setCornerRadius:4]; //设置输入... 阅读全文
摘要:
//事例 CGRect alertFarm = CGRectMake(20,20,100,50); [self noticeAlert:_bgView withNoticeStr:@"登录成功" withFram:alertFarm]; //渐变提示 +(void)noticeAlert:(UIView*)view withNoticeStr :(NSString*)str withFra... 阅读全文
摘要:
// // YKSHttpsRequest.m // YKShareSdkDemo // // Created by qingyun on 22/05/2017. // Copyright © 2017 qingjoin. All rights reserved. // #import "YKSHt 阅读全文
摘要:
为何以前写的没看到了 ubuntu 上安装 shadowsocks server 安装shadowsocks了。 接下来配置也比较简单,找到shadowsocks文件夹: sudo find / -name shadows* 新建一个 config.json,或者其他名字的都行,位置可以放在/etc 阅读全文