要想xib中的控件与对应代码进行关联,xib文件的类名称需要是代码所在的类,即: class对应代码所在文件.h的名称,这样就可以右键拖动进行关联。或者直接把.h文件拖动到xib文件的fill‘s owner上,即把.h文件与 …
标签 : Objective-C › 28个相关结果 183次浏览
原来的程序: -(void)updateLabel { NSDate* now = [NSDate date]; int hour = 23 – [[now dateWithCalendarFormat:nil timeZo …
脚崴了,在床上躺了半个多月,今天重新开工。 Error:Could not insert new outlet connection: Could not find any information for the class named 解 …
函数里面定义的变量和class属性变量重名了! 将 @synthesize message; 改成 @synthesize message=_message; 即可。
实现在程序中显示网络图片,但图片格式是以.XXX结尾 NSString *urlString = @“http://hiphotos.baidu.com/zhdq10/pic/item/a2a0fd …
ARC工作原理是在编译程序的时候由Xcode将内存操作的代码(如:retain,release和autorelease)自动添加到需要的位置。 ARC只能在iOS4和iOS5上使用,weak preferences只能在iOS5上使用,并且 …