会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
第三维
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
下一页
2017年4月25日
iOS应用跳转到appstore评分
摘要: appid是在iTunesConnect创建应用时自动生成的ID
阅读全文
posted @ 2017-04-25 10:34 第三维
阅读(199)
评论(0)
推荐(0)
2017年4月18日
NSString 和 UInt8 相互转换
摘要: //NSString 转 UInt8 NSString *str = @"测试转换"; UInt8 buff_str[1024]; memcpy(buff_str,[str UTF8String], [str length]+1); NSLog(@"char = %s",buff_str); NSS
阅读全文
posted @ 2017-04-18 14:05 第三维
阅读(940)
评论(0)
推荐(0)
2017年1月3日
解决UINavigationController在pushViewController时出现的"卡顿"问题
摘要: 进行开发中,遇到了个小问题: 在使用UINavigationController的-pushViewController:animated:执行入栈一个子控制器操作时(即最新栈顶子控制器),会出现推出(即入栈)"卡顿"现象, 原因:这是因为从iOS7开始, UIViewController的根vie
阅读全文
posted @ 2017-01-03 11:08 第三维
阅读(887)
评论(0)
推荐(0)
2016年12月16日
Xcode 运行程序,左侧memory 不显示内存
摘要: 运行程序后,xcode 不显示当前使用的内存情况,问题是打开了僵尸--enable zoombie Objects,关闭即可 打开 product >SCheme-->EditSCheme -->enable zoombie Objects 取消选中 ok 就可以继续显示了
阅读全文
posted @ 2016-12-16 18:24 第三维
阅读(337)
评论(0)
推荐(0)
2016年10月8日
Error Domain=NSURLErrorDomain Code=-999 “The operation couldn’t be completed.
摘要: 转:http://www.wangzhengdong.com/blog/error-domainnsurlerrordomain-code-999-the-operation-couldnt-be-completed.html – (void)webView:(UIWebView *)webView
阅读全文
posted @ 2016-10-08 18:24 第三维
阅读(1731)
评论(0)
推荐(0)
2016年9月23日
iOS PhotoKit框架如何获取视频文件大小
摘要: // 获取相册中的资源[group enumerateAssetsWithOptions:NSEnumerationReverse usingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) { if (result) { NSLog(@"
阅读全文
posted @ 2016-09-23 10:01 第三维
阅读(3718)
评论(0)
推荐(0)
2016年9月22日
指向指针的指针用法
摘要: 例如有一个方法: - (int)openFile:(NSString *)path vsFile:(void **)pFile openMode:(int)mode; 调用的时候: void *vsFile; (前面的void * 要跟方法里面的保持一致) [self openFile:path v
阅读全文
posted @ 2016-09-22 16:32 第三维
阅读(356)
评论(0)
推荐(0)
iOS持续写文件到本地
摘要: NSString *tempSavePath = [NSString stringWithFormat:@"%@/Documents",kDocumentPath]; NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPa
阅读全文
posted @ 2016-09-22 12:04 第三维
阅读(688)
评论(0)
推荐(0)
2016年9月18日
svn服务器地址变换以后,mac下的处理方法
摘要: svn服务器地址变换之后,mac下的处理方法 svn服务器地址变换之后,mac下的处理方法 1、进入终端,进入项目所在的文件夹下: [java] view plain copy cd 项目位置/ [java] view plain copy [java] view plain copy 2、查看sv
阅读全文
posted @ 2016-09-18 11:17 第三维
阅读(1958)
评论(0)
推荐(0)
2016年8月16日
svn报错cleanup failed–previous operation has not finished; run cleanup if it was interrupted的解决办法
摘要: 今天在svn提交的时候它卡顿了一下,我以为已经提交完了,就按了一下,结果就再也恢复不了,也继续不了了... 报错 cleanup failed–previous operation has not finished; run cleanup if it was interrupted 试过执行cle
阅读全文
posted @ 2016-08-16 19:53 第三维
阅读(334)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
下一页
公告