摘要: 1.框架是有许多类,函数,方法,文档按照一定的逻辑组织起来的集合2. Foundation框架是所有框架的基础3.术语cocoa指的是foundation框架和appication kit框架4.术语cocoa touch指的是foundation框架和uikit框架5.熟悉foundation文档NSNumber可以将基本数据类型包装起来,形成一个对象,这样就可以给其发送消息,装入NSArray中等等。NSNumber * intNumber=[NSNumber numberWithInt:100];NSNumber *floatNumber=[NSNUmber numberWithFloa 阅读全文
posted @ 2013-08-01 23:39 火红的云彩 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 想要用 UIActionSheet必须现在 .h文件中加个协议 这时操作表//定义一个操作表- (IBAction)uisheel:(id)sender { UIActionSheet *action=[[UIActionSheet alloc] initWithTitle:@"who!!!" delegate:self cancelButtonTitle:@"yes" destructiveButtonTitle:@"no" otherButtonTitles:@"yes or no", nil]; [actio 阅读全文
posted @ 2013-08-01 21:37 火红的云彩 阅读(609) 评论(0) 推荐(0) 编辑