会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
 Sportica
 Sportica
qingjoin
博客园
首页
新随笔
联系
管理
订阅
2018年3月19日
instruments symbol name 不显示函数名!
摘要: 那是因为instruments找不到编译好的dSYM 其它的什么修改配置都没什么用 最好的办法就是直接删除资源文件APP名。 资源库 -> Developer -> Xcode -> DerivedData -> 找到你的app名字对应文件夹 然后果断删除就行了。删除后重新编译又会生成新的文件 原
阅读全文
posted @ 2018-03-19 09:46 qingjoin
阅读(612)
评论(0)
推荐(0)
2018年1月19日
ubuntu 上安装 shadowsocks server---
摘要: 为何以前写的没看到了 为什么之前写的又看不到了? XXX ubuntu 上安装 shadowsocks server 安装shadowsocks了。 接下来配置也比较简单,找到shadowsocks文件夹: sudo find / -name shadows* 新建一个 config.json,或者
阅读全文
posted @ 2018-01-19 15:08 qingjoin
阅读(1)
评论(0)
推荐(0)
2017年10月26日
ld: framework not found FileProvider for architecture arm64
摘要: 出现这个问题是因为 静态库是用Xcode9打包的。 如果用xcode8编译的话就会出现这个问题 解决办法 从Xcode9里把这个库拷贝出来。然后放到Xcode8上面 One way to fix this is to go to: /Applications/Xcode-beta.app/Conte
阅读全文
posted @ 2017-10-26 15:34 qingjoin
阅读(6852)
评论(0)
推荐(0)
2017年9月14日
iOS NSDictionary 转Json 去掉换行去掉空格
摘要: //dic 转json 如果用系统自带的会出现空格。 + (NSString *)returnJSONStringWithDictionary:(NSDictionary *)dictionary{ //系统自带 // NSError * error; // NSData * jsonData = [NSJSONSerializa...
阅读全文
posted @ 2017-09-14 17:15 qingjoin
阅读(3166)
评论(0)
推荐(0)
2017年6月27日
iOS 随机数获取
摘要: //获取一个32位随机数 static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; //!@#$%^*() //1、获取一个随机整数范围在:[0,100)包括0,不包括100 int x = arc4random() % 100; // 获取一个随机...
阅读全文
posted @ 2017-06-27 13:36 qingjoin
阅读(2161)
评论(0)
推荐(0)
2017年6月21日
iOS 获取IP
摘要: #import //获取IP #import //只能获取WIFI下的IP地址 + (NSString *)getIPAddress { NSString *address = @"error"; struct ifaddrs *interfaces = NULL; struct ifaddrs *temp_addr = NULL; int succes...
阅读全文
posted @ 2017-06-21 15:57 qingjoin
阅读(605)
评论(0)
推荐(1)
2017年5月26日
UITextField 基本设置
摘要: _myAccount = [[UITextField alloc]init]; _myAccount.frame = CGRectMake(0, 0, 200, 100); _myAccount.backgroundColor = [UIColor clearColor]; [_myAccount.layer setCornerRadius:4]; //设置输入...
阅读全文
posted @ 2017-05-26 16:31 qingjoin
阅读(210)
评论(0)
推荐(0)
2017年5月24日
iOS 渐变提示。错误弹出提示 几秒自动消失
摘要: //事例 CGRect alertFarm = CGRectMake(20,20,100,50); [self noticeAlert:_bgView withNoticeStr:@"登录成功" withFram:alertFarm]; //渐变提示 +(void)noticeAlert:(UIView*)view withNoticeStr :(NSString*)str withFra...
阅读全文
posted @ 2017-05-24 15:25 qingjoin
阅读(1140)
评论(0)
推荐(0)
2017年5月23日
iOS https请求 NSURLSessionDataTask
摘要: // // YKSHttpsRequest.m // YKShareSdkDemo // // Created by qingyun on 22/05/2017. // Copyright © 2017 qingjoin. All rights reserved. // #import "YKSHt
阅读全文
posted @ 2017-05-23 09:28 qingjoin
阅读(4028)
评论(0)
推荐(0)
2017年2月16日
ubuntu 上安装 shadowsocks server
摘要: 为何以前写的没看到了 ubuntu 上安装 shadowsocks server 安装shadowsocks了。 接下来配置也比较简单,找到shadowsocks文件夹: sudo find / -name shadows* 新建一个 config.json,或者其他名字的都行,位置可以放在/etc
阅读全文
posted @ 2017-02-16 15:15 qingjoin
阅读(10)
评论(0)
推荐(0)
下一页
公告
 Sportica