●DEP(Date Execution Prevention)数据执行保护:DEP通过处理器的(No eXecute)功能,查找内存中没有明确包含可执行代码的数据,找到这些数据后,NX将它们都标记为“不可执行”。以后如果某程序在内存中,试图执行这些带“不可执行”标记的代码,SP2将会自动关闭该程序。...
分类:
其他好文 时间:
2014-09-17 18:31:12
阅读次数:
239
作者:CSDN 大锐哥地址:http://blog.csdn.net/prevention-内置的颜色有啥?// Some convenience methods to create colors. These colors will be as calibrated as possible.//....
分类:
移动开发 时间:
2014-08-14 16:21:49
阅读次数:
300
iOS Dev (66) 一个手机游戏程序的基本考虑
博客:http://blog.csdn.net/prevention作者:大锐哥摘自:Learn iPhone and iPad cocos2d Game Development
1 基本流程内的 handler
程序启动
applicationDidFinishLaunching
程序切到后台
applicationDidE...
分类:
移动开发 时间:
2014-07-03 18:44:47
阅读次数:
236
iOS Dev (67) 单例的实现
博客:http://blog.csdn.net/prevention作者:大锐哥摘自:Learn iPhone and iPad cocos2d Game Development
实现
在 .m 文件中
static MyManager *sharedManager = nil; +(MyManager*) sharedManager
{
...
分类:
移动开发 时间:
2014-07-03 18:44:09
阅读次数:
202
iOS Dev (63) 如何在 TableView 滚动时收起键盘?
作者:阿锐地址:http://blog.csdn.net/prevention
-
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
[_inputTextView resignFirstResponder];
}
-
转载请注明来自:ht...
分类:
移动开发 时间:
2014-06-25 10:07:33
阅读次数:
264
iOS Dev (59) 高度自适应的UITextView
作者:阿锐 地址:http://blog.csdn.net/prevention
-
如下 _inputTextView 为一个 UITextView 实例。首先要设置它的 delegate,然后要在你的头文件的 interface 声明中加上 UITextViewDelegate。
_inputTextView.delegate...
分类:
移动开发 时间:
2014-06-24 22:57:40
阅读次数:
275
iOS Dev (60) 如何实现 UITextView 中的 placeHolder
作者:阿锐 地址:http://blog.csdn.net/prevention
-
跟着你的 UITextView 定义一个 UILabel。
UILabel *inputPlaceHolder;
placeHolder 是当有内容时不显示,无内容时显示,所以可以为所在的实例对应的类实现 UITe...
分类:
移动开发 时间:
2014-06-24 18:12:46
阅读次数:
208
iOS Dev (55) 获取当前年、月、日等信息
作者:大锐哥博客:http://prevention.iteye.com
-
NSDate *now = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSUInteger unitFlags =
NSYearCalendarUnit...
分类:
移动开发 时间:
2014-06-22 22:39:27
阅读次数:
291
iOS Dev (54) 键盘弹出后收起时View随之移动
作者:大锐哥博客:http://prevention.iteye.com
-
添加监听
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(c...
分类:
移动开发 时间:
2014-06-22 14:56:07
阅读次数:
222
iOS Dev (53) 修复UIImagePickerController偷换StatusBar颜色的问题
作者:大锐哥博客:http://prevention.iteye.com
-
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:...
分类:
移动开发 时间:
2014-06-22 14:18:08
阅读次数:
224