2016年2月21日

UIImageView

摘要: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWi 阅读全文

posted @ 2016-02-21 08:16 哥依然帅气 阅读(126) 评论(0) 推荐(0) 编辑

UIButton

摘要: //创建一个UIButton对象,UIButton侧重于交互,响应事件 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; //设置frame、 button.frame = CGRectMake(100, 300, 20 阅读全文

posted @ 2016-02-21 08:15 哥依然帅气 阅读(137) 评论(0) 推荐(0) 编辑

UITextField

摘要: UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(50, 200, 200, 40)]; //设置输入框的边框样式 textField.borderStyle = UITextBorderStyleRound 阅读全文

posted @ 2016-02-21 08:14 哥依然帅气 阅读(150) 评论(0) 推荐(0) 编辑

UILabel

摘要: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWi 阅读全文

posted @ 2016-02-21 08:12 哥依然帅气 阅读(91) 评论(0) 推荐(0) 编辑

UIView

摘要: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //创建一个新的窗口对象,并且和屏幕大小一样 self.window = [[ 阅读全文

posted @ 2016-02-21 08:09 哥依然帅气 阅读(105) 评论(0) 推荐(0) 编辑

导航