在我的应用中,我需要指定一个字符串作为uibutton的标题。
我该怎么做呢。例如
NSString *date=[[NSString alloc]initwithString:@"Todays Date"];
//am trying to assign the date content as a title for my button
[Button setTitle:date state:ForNormalSatate];
如何将标题设为“今日日期”按钮
答案 0 :(得分:1)
设置按钮标题的语法是:
[myButton setTitle:date forState:UIControlStateNormal];
或者您对将日期作为字符串更感兴趣?查找NSDateFormatter
的文档。如果您遇到问题,请搜索StackOverflow。
顺便说一句:不要忘记发布你的date
字符串。