嘿,我正在研究一個小應用程序,它根據日期選擇器的當前狀態更改UIButton的文本。它會顯示「它是哪天?」或「它會是哪一天?」。但是,使用xcode 6.3 beta時,UIButton SetTitle方法似乎不存在。相反,我嘗試將一個字符串分配給titleLabel.txt,但這不會更改按鈕文本。以編程方式更改iOS中不工作的UIButton的標題Xcode-Beta 3
方法如下:
(IBAction) changeButton:(id)sender {
NSDate *currentDate = [self.datePicker date];
NSDate *now = [NSDate date];
if(currentDate<now){
self.whatButton.titleLabel.text = @"What day was it?";
}
else {
self.whatButton.titleLabel.text = @"What day will it be?";
}
我已經看到,方法的setTitle將是一個可能的解決方案,但發現該庫可能已經改變。任何建議將不勝感激!
的每一個國家設置不同的文本,發送者是dateSelector。我希望更改UIButton以響應接收'Value Changed'事件。 – taptrick 2015-03-25 02:43:06
不用擔心,只需將其更改爲上面的代碼行即可。 – 2015-03-25 03:18:43