1、mainviewcontroller 中加载-------然后->layoutsubview
2、[[CoreData sharedClient] performFetch]; ???
[[CoreData sharedClient] handleUserInfo:**]; ???
3、[self getResourceSync]; ???
4、设置每个section的行分割线:
[GeneralFunction getImageView:1000001 view:titleView imageName:@"lineBg.png" rect:CGRectMake(0.0f, secheight-1.0f, secwidth, 1.0f)];
5、为什么很多地方的分解处理要以 IOS—6.1之后的做判断?
6、appdelegate中gomainview的方法中,对于navigationbar的隐藏设置? —无反应
7、+(UIColor*)ColorWithHexString:(NSString *)stringToConvert
16进制颜色转rgb——?
8、代码块blocks
9、table — checking cells 选中状态
10、table ——unselecting cells 延时消除选中状态
11、iPhoneCoreDataRecipes--Recipes --- table精髓
12、移动info.plist,要修改项目设置中packing 中的 info.plist File的路径???
13、uinavigationcontroller对象自动assign本身 作为uinavigationBar对象的delegate
14、根视图处于导航栈的最底层
15、扩展图标(accessory icon)称为扩展指示器(disclosure indicator),告知将切换到另一个视图,它以一个灰色箭头表示. 细节展示按钮(detail disclosure button)不仅是一个图标,它还是一个可单击的控件.
16、使用更为具体种类的对象替代一般类型----多态性
17、为什么使用继承?因为这样可以精简很多重复的代码。
18、类之间的关系可以通过组合的方式来建立
19、真正包含在类对象中的实例变量是内存中存在的其他对象的引用
以下两个方法均是多线程方法
- (void)performSelectorInBackground:(SEL)aSelector withObject:(id)arg
和
- (void)performSelectorOnMainThread:(SEL)aSelector withObject:(id)arg waitUntilDone:(BOOL)wait;
网友评论