摘要: 一、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)
摘要: 一、UIButton的基本属性 UIButton * button=[UIButton buttonWithType:UIButtonTypeCustom];//button的样式 button.frame=CGRectMake(i%2*btnView.width/2,i/2*(btnView.he... 阅读全文
posted @ 2015-07-09 15:22 莫莫smile1 阅读(97) 评论(0) 推荐(0)
摘要: 一、基本属性//初始化并定义大小UITextView*textview=[[UITextViewalloc]initWithFrame:CGRectMake(20,10,280,30)]; textview.scrollEnabled=NO;//当文字超过视图的边框时是否允许滑动,默认为“YES”... 阅读全文
posted @ 2015-07-09 11:48 莫莫smile1 阅读(163) 评论(0) 推荐(0)