0
我使用故事板創建了一個彩票遊戲,當第一次打開時顯示玩家= 10的餘額和大獎= 10的餘額。但是,當我運行遊戲時,任何一個都不會顯示在UITextField中。我錯過了什麼,或者我需要創建一個方法來顯示每個數量?如果我這樣做,因爲我已經嘗試過,而且我沒有運氣?在UITextField中顯示文本
- (id) init
{
self = [super init];
if (self)
{
NSInteger balance = 10;
NSInteger jackpot = 10;
txtBalance.text = [NSString stringWithFormat:@"%d", balance];
txtPot.text = [NSString stringWithFormat:@"%d", jackpot];
}
return self;
}
嘗試使用故事板來放置一些值並在此註釋掉您的代碼。 –
嘗試將代碼放在'viewDidLoad'而不是'init'中。 – n00bProgrammer
謝謝@AkshatSinghal。我知道,自從我與故事板混淆後,這只是一段時間。 – jsollo2