摘要:Objective-C中的@property和@synthesize用法:http://justcoding.iteye.com/blog/1444548此博客内部详细说明了关于@property与@synthesize怎么使用以及关于@property后面所接参数的含义,虽然都是转载,这篇还是可以...
阅读全文
摘要:1 #import "LabelTestViewController.h" 2 @implementation LabelTestViewController 3 /* 4 Accessing the Text Attributes 5 text prope...
阅读全文
摘要:转载于:http://blog.sina.com.cn/s/blog_5ffa81380101fns7.html//创建UITextField对象UITextField* tf=[[UITextFieldalloc]init];//设置UITextField的文字颜色tf.textColor=[UIColor redColor];//设置UITextField的文本框背景颜色tf.backgroundColor=[UIColorgrayColor];//设置UITextField的边框的风格tf.borderStyle=UITextBorderStyleRoundedRect;//设置UITe
阅读全文