查找资料的时候发现不错的文章,自己翻译之后分享给大家!一个基本的该类型字符串例子:@"This
is a constant character string object";在后台显示它:NSLog (@"%@", @"This is a constant
character string obje...
分类:
其他好文 时间:
2014-05-26 20:34:38
阅读次数:
278
- (void)searchBar:(UISearchBar *)searchBar
textDidChange:(NSString *)searchText;{
NSLog(@"textDidChange---%@",searchBar.text); if (searchBar.tex...
分类:
其他好文 时间:
2014-05-25 19:50:46
阅读次数:
666
1. Locale
设置DatePicker的地区,即设置DatePicker显示的语言。
// 1.跟踪所有可用的地区,取出想要的地区
NSLog(@"%@", [NSLocale availableLocaleIdentifiers]);
// 2. 设置日期选择控件的地区
[datePicker setLocale:[[NSLocale
alloc]initW...
分类:
其他好文 时间:
2014-05-25 16:18:23
阅读次数:
294
内存管理重写dealloc方法@implementation Dog#pragma mark
当一个对象从内存中移除的时候,就会被调用- (void) dealloc{ NSLog(@"----Dog被销毁了------");
//一定要调用super的方法,写在该方法的最后 [sup...
分类:
移动开发 时间:
2014-05-23 12:03:27
阅读次数:
347
1.注册通知[NSNotificationCenter defaultCenter]
addObserver:self selector:@selector(notify) name:@"myNotify"
object:nil];-(void)notify{ NSLog(@"notify");}....
分类:
移动开发 时间:
2014-05-23 10:02:56
阅读次数:
306
1. iOS允许最近本地通知数量最大为多少?
A.64 B.32 C.128 D.16
2. int x = 1; int y = 2; int z = x^y*y; NSLog(@"%d",z); 请问输出结果是多少
A.1 B.2 C.4 D.5
错误 应该选择:D.5
3. 让一个UIView刷新的方法是()
A.setNeedsDisplay B.drawR...
分类:
其他好文 时间:
2014-05-22 07:14:49
阅读次数:
222
一个基本的该类型字符串例子:@"This is a constant character
string object";在后台显示它:NSLog (@"%@", @"This is a constant character string
object");得到其长度:int len = [@"Hel...
分类:
其他好文 时间:
2014-05-19 13:59:33
阅读次数:
234
自定义Log#ifdef DEBUG#define ZRLog(...)
NSLog(__VA_ARGS__)#else#define ZRLog(...)#endif
分类:
其他好文 时间:
2014-05-13 11:05:03
阅读次数:
218
1、定义C函数:
void dynamicMethodIMP(id
self, SEL _cmd)
{
NSLog(@"蜗牛也疯狂");
}
2、重写函数+(BOOL)resolveInstanceMethod:(SEL)sel
+(BOOL)resolveInstanceMethod:(SEL)sel
{
class_addMethod([self
...
分类:
移动开发 时间:
2014-05-13 08:09:05
阅读次数:
412
NSLog 的格式如下所示:? %@ 对象? %d, %i 整数? %u 无符整形? %f
浮点/双字? %x, %X 二进制整数? %o 八进制整数? %zu size_t? %p 指针? %e 浮点/双字 (科学计算) ? ...
分类:
其他好文 时间:
2014-05-12 00:10:29
阅读次数:
244