上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 64 下一页

2013年6月29日

错误解决:release' is unavailable: not available in automatic reference counting mode

摘要: 解决办法:You need to turn offAutomatic Reference Counting. You do this by clicking on your project in the navigator (the top item in the finder-like thing on the left), then click on your project, select"Build Settings"and turn off the option"Objective-C Automatic Reference Counting" 阅读全文

posted @ 2013-06-29 10:32 王培 阅读(597) 评论(0) 推荐(0) 编辑

2013年6月27日

JS加解密URL参数encodeURIComponent() decodeURIComponent()

摘要: 参考1:http://www.w3school.com.cn/js/jsref_encodeURIComponent.asp参考2:http://www.w3school.com.cn/js/jsref_decodeURIComponent.asp实例:输出:http%3A%2F%2Fwww.w3school.com.cn%2FMy%20first%2Fhttp://www.w3school.com.cn/My first/ 阅读全文

posted @ 2013-06-27 15:59 王培 阅读(1611) 评论(0) 推荐(0) 编辑

2013年6月23日

(ios开发学习笔记一)ios项目文件结构

摘要: 转自:http://www.cnblogs.com/macroxu-1982/archive/2012/07/31/2616389.html下面是单个窗体项目例子,我们从这个项目开始,说明ios项目文件结构。项目清单说明:1 supporting files 文件夹supporting files中放置了项目支持文件,下面是各种文件功能说明helloword-info.plish 文件 :放置项目属性:如icon,项目显示名称,版本号等。 infoplist.strings文件:放置项目地区信息 main.m文件:主启动文件helloword-prefix.pch文件:... 阅读全文

posted @ 2013-06-23 12:21 王培 阅读(863) 评论(0) 推荐(0) 编辑

2013年6月18日

ios5 xcode 4.2 中 release显示编译警告或错误的解决方法

摘要: 转自:http://lizi464789754.blog.163.com/blog/static/1689370852011924113245778/由于 iOS5 xcode4.2 引入了ARC (AutomicReferenceCounting) , 使用xcode4.2 新建项目时,会有一些小小的变化。NSAutoReleasePool 被@{Autoreleasepool/ / Code for autoreleasepool}block 取代了。新增了__strong , __weak 编译指令。ios5.0知道你的变量在何时需要release,何时需要autorelease,所以变 阅读全文

posted @ 2013-06-18 21:38 王培 阅读(228) 评论(0) 推荐(0) 编辑

2013年6月16日

xcode 3.x版本中的Executables 到xcode 4.x中怎么找不到了?

摘要: 转自:http://zhidao.baidu.com/question/327868169.html1 在Scheme处选择Edit Scheme2 点击Run(Debug)3 在Arguments一栏下有你想要的。 阅读全文

posted @ 2013-06-16 21:39 王培 阅读(193) 评论(0) 推荐(0) 编辑

XCode快捷键

摘要: 转自:http://www.cnblogs.com/yjmyzz/archive/2011/01/25/1944325.html1. 文件CMD + N: 新文件CMD + SHIFT + N: 新项目CMD + O: 打开CMD + S: 保存CMD + SHIFT + S: 另存为CMD + W: 关闭窗口CMD + SHIFT + W: 关闭文件2. 编辑CMD + [: 左缩进CMD + ]: 右缩进CMD + CTRL + LEFT: 折叠CMD + CTRL + RIGHT: 取消折叠CMD + CTRL + TOP: 折叠全部函数CMD + CTRL + BOTTOM: 取消全部 阅读全文

posted @ 2013-06-16 20:43 王培 阅读(211) 评论(0) 推荐(0) 编辑

XCode帮助文档离线下载解决办法

摘要: 1.菜单栏Xcode->Preferences选择Documentation,在线下载2.离线下载(用迅雷即可下载)在上述在线下载列表中,点击某一列,下拉框可看见 info,可得到其网络所在地址例如:iOS 4.3 Library (v. 38.55)API reference and conceptual documentation for iOS 4.3.Copyright © 2011 Apple Inc. All rights reserved.Feed:http://developer.apple.com/rss/com.apple.adc.documentation 阅读全文

posted @ 2013-06-16 16:45 王培 阅读(537) 评论(0) 推荐(0) 编辑

修改模板中公司的名字与开发者名字

摘要: 转自:http://www.cnblogs.com/mengshu-lbq/archive/2012/12/19/2824743.html打开 终端,输入以下的语句:defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME = "YOUR COMPANY"; FULLUSRENAME = "YOUR NAME";}'其中,YOUR COMPANY 是你要设定的公司的名字,YOUR NAME是你要设定的开发者的名字。 阅读全文

posted @ 2013-06-16 16:21 王培 阅读(204) 评论(0) 推荐(0) 编辑

XCode中调整字体大小

摘要: 转自:http://www.cnblogs.com/mengshu-lbq/archive/2012/12/24/2830859.html1)调出Xcode的preference应该是 Command 键+ , 键或者 点击顶部的 XCode -> Preference2)选择 “Fonts and Colors”3)选择一个Theme, 比如Sunret4)选择该Theme下的的所有的item,如下图所示:5)点击 T,弹出如下的对话框:在Size栏下选择相应的字体大小即可(XCode默认的字体大小是11),当然也可以选择自己喜欢的字体 阅读全文

posted @ 2013-06-16 16:19 王培 阅读(617) 评论(0) 推荐(0) 编辑

2013年6月15日

用长按键重复输入 - Mac OS X Lion

摘要: How to enable Key Repeat in Mac OS X Lion 1. 打开 Terminal.app 2. 输入以下命令设置ApplePressAndHoldEnable为false defaults write -g ApplePressAndHoldEnabled -bool false 阅读全文

posted @ 2013-06-15 21:23 王培 阅读(752) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 64 下一页

导航