- 浏览: 974872 次
- 性别:
- 来自: 杭州
最新评论
-
骑着乌龟抓兔子:
在执行contains()方法时又new 了一遍,生成一个新的 ...
java中HashSet详解 -
ping7603:
java中HashMap详解 -
LZ645596034:
当我们试图把某个类的对象当成 HashMap 的 key,或试 ...
java中HashSet详解 -
凌风若兮:
不知道是该怪政府把税收的太高,还是该说房地产商太暴利,只是觉得 ...
别让贷款买房,毁了男人的梦想 -
Nabulio:
...
java中HashMap详解
文章列表
-(UIImage *) glToUIImage {
NSInteger myDataLength = 320 * 480 * 4;
// allocate array and read pixels into it.
GLubyte *buffer = (GLubyte *) malloc(myDataLength);
glReadPixels(0, 0, 320, 480, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
// gl renders "upside down" so swap top to bottom ...
如果你不希望应用运行时 iPhone 进入锁屏待机状态,加入下面这行代码即可
[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
http://www.weston-fl.com/blog/?p=2337
Lion 隐藏了library的问题
- 博客分类:
- iphone开发
Mac OS X Lion为了增强所谓的安全性,隐藏了一些系统文件夹,比如Library(资源库)。如此自作多情,使用起来却不太方便,特别是在中国这块神奇的土地 上,我们随时可能要进Library里去干一些什么事。当然可以在前往里输入文件夹路径打开文件夹,但普通用户谁又知道、谁又喜欢去输那么长一段英文呢?
如何显示?在终端中输入以下命令回车即可:
chflags nohidden ~/Library
如果想隐藏:
chflags hidden ~/Library
对于其他文件夹,只要相应更改后面的路径即可。
apple 通用二进制应用程序,含多种处理器或架构的二进制,如x86或x64,arm11或a8
armv7与armv6是指指令或架构的CPU,
armv6是iphone3gs以前arm11 cpu使用的指令集
armv7是iphone3gs及以后、iphone4、ipad,cortex a8 cpu使用的指令集
from : http://hackbin.blog.163.com/blog/static/178163023201141144454113/
Support for some types of background execution must be declared in advance by the application that uses them. An application declares this support by including the UIBackgroundModes key in its Info.plist file. Its value is an array that contains one or more strings with the following values:
audio. ...
有很多人说iPhone 4开始 4.0以后的固件已经支持后台运行了,为什么还需要Backgrounder????
我想说双击Home键出来的叫做最近运行程序列表,出现在这个列表里面的唯一、充分且必要条件是最近运行过的程序,跟任何别 ...
NSMutableArray 中排序
- 博客分类:
- iphone开发
使用sortedArrayUsingComparator方法
NSArray *sorted = [_scores sortedArrayUsingComparator:^(id obj1, id obj2){
if ([obj1 isKindOfClass:[Score class]] && [obj2 isKindOfClass:[Score class]]) {
Score *s1 = (Score*)obj1;
Score *s2 = (Score*)obj2;
if (s1.points > s ...
(id) init
{
self = [super init];
if ( self )
{
// Add the Label (in cocos2D universe)
BitmapFontAtlas *label = [BitmapFontAtlas
bitmapFontAtlasWithString: @"Initializing Game"
fntFile: @"comic_atlas.fnt"
align ...
UIView layer
The view’s Core Animation layer used for rendering. (read-only)
This property is never nil. The actual class of the object is determined by the value returned by the layerClass method. The view is the layer’s delegate.
Warning: Since the view is the layer’s delegate, you should never m ...
http://mobiforge.com/developing/story/programming-apple-push-notification-services
近日在学习iPhone游戏开发,对于2D和3D游戏引擎的使用大费了一番周折。这方面的内容国内网站还很少,只能通过google来查找国外的一些网站资料。还好,总算找到了适合自己和团队学习的引擎。
先对可选项列举如下:
经过以上比对,我首选了开源的工具。2D的游戏引擎使用cocos2d,3D的游戏引擎使用SIO2。
Unity3D试用了Mac版本的,也看了不少视频,学会了基本的使用,不过目前Mac版本没有破解,只有30天的试用期限。另外,使用Unity iPhone的话,Unity必须是注册版才行,所以暂时无法使用Unity ...
http://www.codza.com/how-to-debug-exc_bad_access-on-iphone
http://discussions.apple.com/thread.jspa?threadID=1734845
Google的Objective-C编码规范
http://bukkake.iteye.com/blog/695492