中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

卫辉市| 炉霍县| 依安县| 天水市| 牙克石市| 大冶市| 开封县| 大渡口区| 合山市| 四会市| 塘沽区| 绥阳县| 岱山县| 合川市| 鲁甸县| 克山县| 咸宁市| 稷山县| 芜湖市| 晋州市| 郯城县| 长沙县| 大余县| 桂平市| 离岛区| 科尔| 香河县| 临沂市| 南皮县| 肇源县| 鄂尔多斯市| 兴和县| 壶关县| 普格县| 荔浦县| 阿拉善右旗| 临颍县| 屏东县| 靖西县| 桦甸市| 济源市|