iPhone开发UI
文章平均质量分 79
amdbenq
这个作者很懒,什么都没留下…
展开
-
UITextField
1.UITextField的初始化和设置 textField = [[UITextField alloc] initWithFrame:CGRectMake(120.0f, 80.0f, 150.0f, 30.0f)]; [textField setBorderStyle:UITextBorderStyleRoundedRect]; //外框类型 textField.placehold转载 2012-08-14 13:09:30 · 3054 阅读 · 2 评论 -
UIButton
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];//初始化button,选择button类型 btn.frame = CGRectMake(30, 360, 90, 35);//大小和位置 [btn setTitle:@"ZoomIn" forState:UIControlStateNo原创 2012-08-14 18:27:01 · 9738 阅读 · 0 评论 -
UIScroll View
一、创建 CGRect bounds = [ [ UIScreen mainScreen ] applicationFrame ] ; UIScrollView* scrollView = [ [UIScrollView alloc ] initWithFrame:bounds ]; 当你创建完滚动视图后,你可以将另一个视图的内容粘合到滚动视图的空白页上。这回创建一个原创 2012-08-16 08:54:22 · 2362 阅读 · 0 评论 -
UILabel
//初始化label UILabel *label = [[UILabel alloc] init]; NSString *text = @"这是一个测试!!!adsfsaf时发生发勿忘我勿忘我勿忘我勿忘我勿忘我阿阿阿阿阿阿阿阿阿阿阿阿阿啊00000000阿什顿。。。"; label.text = text; [label setNumb转载 2012-08-14 12:44:31 · 6739 阅读 · 0 评论 -
UIView
曾经有人这么说过,在iphone里你看到的,摸到的,都是UIView,所以UIView在iphone开发里具有非常重要的作用。那么UIView我们到底知道多少呢。请看看下面的问题, 如果这些你都知道,那么本文章的内容就请绕道,如果你还不太清楚,我想看了下面的内容,你就明白了。 1.bounds和frame分别表示什么? 2.ContentMode里UIViewContentMod转载 2012-08-20 17:11:50 · 2302 阅读 · 0 评论