码迷,mamicode.com
首页 > 其他好文 > 详细

怎么获取UIButton标题?

时间:2017-08-31 09:40:56      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:uibutton

UIButton在不同状态(被点击\正常状态\不可用\ ...)标题是可以不同的


按钮的状态

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)
    UIControlStateFocused NS_ENUM_AVAILABLE_IOS(9_0) = 1 << 3, // Applicable only when the screen supports focus
    UIControlStateApplication  = 0x00FF0000,              // additional flags available for application use
    UIControlStateReserved     = 0xFF000000               // flags reserved for internal framework use
};


以下代码获取正常状态下的标题,并赋值给别的变量


    UIControlStateNormal为正常状态

- (IBAction)buttonPressed:(UIButton *)sender {
    NSString *title = [sender titleForState:UIControlStateNormal];
    NSString *plainText = [NSString stringWithFormat:@"%@ button pressed.", title];
    _statusLable.text = plainText;
}


怎么获取UIButton标题?

标签:uibutton

原文地址:http://cpper.blog.51cto.com/368359/1961260

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!