亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

UI中控件的應用

發布時間:2020-04-01 02:48:33 來源:網絡 閱讀:473 作者:jna_114 欄目:開發技術

UI初級中的控件是UI學習的最基本的應用,下面是一些最基礎的控件的應用

UILabel  

  

#pragma mark -UILabel

- (void)_initLabel

{

    UILabel *textLable = [[UILabel allocinitWithFrame:CGRectMake(10, 30, 150, 250)];

    textLable.backgroundColor = [UIColor grayColor];

    //設置文本內容

    textLable.text = @"good morning hehehehehe good morning hehehehehe";

    //設置字體, systemFont使用系統的字體,大小10

    textLable.font = [UIFont systemFontOfSize:16];

    //設置粗體

    textLable.font = [UIFont boldSystemFontOfSize:16];

    

    //字體類 UIFont

    NSArray *familyNames = [UIFont familyNames];

    NSLog(@"familyNames is %@", familyNames);

    textLable.font = [UIFont fontWithName:@"Zapf Dingbats" size:16];

    

    //設置字體顏色

    textLable.textColor = [UIColor orangeColor];

    

    //設置文本對齊方式

    textLable.textAlignment = NSTextAlignmentCenter;

    

    //設置當前的顯示行數,默認是1如果設為0,是自動換行

    textLable.numberOfLines = 0;

    

    //自動根據文本調整寬度和高度

    [textLable sizeToFit];

//    NSLog(@"textLabel is %@", textLable);

    

    [self.window addSubview:textLable];

 

}

UIButton

 

#pragma mark -UIButton

- (void)_initButton

{

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

    button.frame = CGRectMake(10, 180, 90, 44);

    button.backgroundColor = [UIColor greenColor];

    //設置顯示標題, 標題總是需要跟狀態綁定到一起的

//    button.titleLabel.text = @"hehe";   //錯誤,不能這樣設置title

    /*

     typedef NS_OPTIONS(NSUInteger, UIControlState) {

     UIControlStateNormal       = 0,

     UIControlStateHighlighted  = 1 << 0,                  // used when UIControl isHighlighted is set

     UIControlStateDisabled     = 1 << 1,

     UIControlStateSelected     = 1 << 2,                  // flag usable by app (see below)

     UIControlStateApplication  = 0x00FF0000,              // additional flags available for application use

     UIControlStateReserved     = 0xFF000000               // flags reserved for internal framework use

     };

     */

    [button setTitle:@"hehe" forState:UIControlStateNormal];

    //設置高亮狀態下的title

//    [button setTitle:@"haha" forState:UIControlStateHighlighted];

    //設置選中狀態下的title

//    [button setTitle:@"hihi" forState:UIControlStateSelected];

    

    //設置按鈕是否選中

//    button.selected = true;

    

    //設置標題的字體

    button.titleLabel.font = [UIFont boldSystemFontOfSize:20];

    

    //設置標題的顏色

    [button setTitleColor:[UIColor redColorforState:UIControlStateNormal];

//    [button setTitleColor:[UIColor yellowColor] forState:UIControlStateSelected];

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长武县| 合作市| 宣化县| 胶州市| 宝清县| 木里| 青龙| 沙洋县| 正蓝旗| 团风县| 金昌市| 南充市| 申扎县| 启东市| 如皋市| 寿光市| 凤冈县| 湾仔区| 和平区| 海盐县| 商城县| 揭阳市| 乐昌市| 清流县| 宁海县| 余姚市| 搜索| 格尔木市| 罗城| 宜兰市| 岚皋县| 札达县| 沅江市| 海宁市| 宁蒗| 安丘市| 即墨市| 高陵县| 塔河县| 大方县| 喀喇沁旗|