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

currentTitle的用法

时间:2015-11-12 18:09:42      阅读:490      评论:0      收藏:0      [点我收藏+]

标签:

UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom];
    [but setTitle:@"测试一下" forState:UIControlStateNormal];
    NSLog(@"****%@",[button currentTitle]);//button.currentTitle
    NSLog(@"******%@",button.titleLabel.text);
两者输出的结果是一样的,currentTitle是快速的访问方法,[button curenttitle]和button.curremtTitle是一样的,一个是调用currentTitle方法,一个是点方法
同理,currentImage,currentBackgroundImage等都是一个快速访问的方法

currentTitle的用法

标签:

原文地址:http://www.cnblogs.com/banchuangshuying/p/4959611.html

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