摘要: 一、继承继承使得子类可以从父类中获得一些属性和已有方法 @interfaceClassA:NSObject @end @implementationClassA @ end还可以用super调用父类的方法二、封装1、四个权限修饰符@public、@protected、@private、@packag... 阅读全文
posted @ 2015-07-10 16:47 莫莫smile1 阅读(598) 评论(0) 推荐(0)
摘要: 一、设置本地图片UIImageView * iconImg=[[UIImageView alloc]initWithFrame:CGRectMake((kDeviceWidth-90)/2, 10, 90, 90)]; [iconImg setImage:[UIImage imageNamed... 阅读全文
posted @ 2015-07-10 15:01 莫莫smile1 阅读(191) 评论(0) 推荐(0)
摘要: 一、UILabel的基本属性 //设置字体:粗体,正常的是SystemFontOfSize label1.font= [UIFontboldSystemFontOfSize:20]; //设置文字颜色 label1.textColor= [UIColororangeColor];//设置... 阅读全文
posted @ 2015-07-10 13:58 莫莫smile1 阅读(125) 评论(0) 推荐(0)
摘要: 一、UIAlertViewUIAlertView * alert=[[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButtonTitles... 阅读全文
posted @ 2015-07-10 11:35 莫莫smile1 阅读(192) 评论(0) 推荐(0)