
工作过程中遇到的问题
iShareStudio
广州大学城大学生软件开发团队
展开
-
在iOS中创建静态库(Creating a Static Library in iOS Tutorial)
中文:http://www.cocoachina.com/applenews/devnews/2013/1204/7468.html 英文:http://www.raywenderlich.com/41377/creating-a-static-library-in-ios-tutorial原创 2014-02-13 18:20:16 · 867 阅读 · 0 评论 -
有关百度一键分享链接到微信朋友圈无法打开网页,报404错误的解决办法,from=timeline&isappinstalled=0,和伪静态规则有关
最近有好友反映用百度一键分享,分享网页链接到微信朋友圈的时候,发现链接无法打开,提示无法找到该页404错误,同样分享到QQ、微博等链接 能正常访问,这么明显的错误,百度和腾讯应该不会忽略吧。 接报后,我专门分析了一遍他公司的网站,确实是微信朋友圈无法分享网站链接。但是通过微信扫一扫能正常浏览网页,点击分享到朋友圈后,在 从朋友圈去访问的时候,提示无法找到该页,报404错误。 经转载 2015-02-06 12:00:49 · 7610 阅读 · 0 评论 -
AppStore App申请审核加速
有没有遇到上线后发现很严重的bug这种情况,修复bug后提交审核又是漫长的等待,那样会把人逼疯的。 估计是为了对应这样的情况,apple提供有一个加速审核的通道: https://developer.apple.com/appstore/contact/appreviewteam/index.html 界面如下: 除了上面的截图,中间需要填转载 2014-11-27 10:03:03 · 788 阅读 · 0 评论 -
The entitlements specified in your application’s Code Signing Entitlements file do not match ...
2种解决方式: (1)删掉在Targets中的Info中的Build选项卡中的Code Signing Entitlements的值。 (2)新建一个plist,让它成为Code Signing Entitlements值的那个文件。 具体: 第一步:在工程中添加文件new file,选择Code Signing 中的Entitlements,添加后名称为Entitleme原创 2014-11-27 09:58:57 · 3645 阅读 · 0 评论 -
真机调试报错gen_entitlements.py: No such file or directory
从网上下了一个应用,但是调式到真机上的时候,报错,很郁闷,错误如下: /Users/UserName/Library/Developer/Xcode/DerivedData/XXXX-gbptdycicygzdybegaywigkbbdqh/Build/Intermediates/XXXX.build/Debug-iphoneos/XXXX.build/Script-35DBA040转载 2014-11-27 09:48:10 · 890 阅读 · 0 评论 -
iOS中的常用指令集(armv6、armv7、armv7s、arm64)
官方: https://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaTouch64BitGuide/Introduction/Introduction.html https://developer.apple.com/library/ios/documentation/General/Con转载 2014-10-19 15:28:40 · 894 阅读 · 0 评论 -
在ARC环境:Potential leak of an object
在ARC环境报: Potential leak of an object 出错原因: 部分是ARC,部分是非ARC 解决: To convert to ARC, go to Edit->Refactor->Convert to Objective-C ARC. 参考: http://stackoverflow.com/questions/1323054原创 2014-03-04 15:35:55 · 1294 阅读 · 0 评论 -
Validate Project Settings ,Update to recommended settings
报错: Validate Project Settings Update to recommended settings 解决: 1,双击报错 2,在弹出的页面允许修改。 参考: http://stackoverflow.com/questions/18898999/xcode-5-warns-about-my-architectures-setting-原创 2014-03-04 15:01:19 · 6931 阅读 · 0 评论 -
cString is deprecated :first deprecated in iOS 2.0
报错: cString is deprecated :first deprecated in iOS 2.0 解决: cString 替换成 UTF8String 参考: http://stackoverflow.com/questions/4552412/nsstring-cstring-is-deprecated-what-is-the-alternative原创 2014-03-04 15:05:27 · 1948 阅读 · 0 评论 -
Value stored to 'myKeyArray' during its initialization is never read
报错: Value stored to 'myKeyArray' during its initialization is never read 解决: 把类似这种实例化 NSArray *myKeyArray = [[NSArray alloc]init]; 改成 NSArray *myKeyArray; 参考: http://stackoverf原创 2014-03-04 15:16:54 · 2029 阅读 · 0 评论 -
不能修改“System Roots”钥匙串
下载的.cer 文件添加不到钥匙串 双击提示 : 不能修改“System Roots”钥匙串 要更改根证书是否会被信任,请在“钥匙串访问”中打开它,然后修改它的信任设置。 解决:在钥匙串左侧菜单选择登录,再直接把.cer 文件拖进去。原创 2015-05-10 18:55:55 · 1579 阅读 · 0 评论