2010-12-14 88 views
1

我是iPhone新手,正在練習一下。我通過IB將通過IB製作的uilabel連接到我的代碼中的IBOutlet上,但是在試圖設置它的文本時它仍然說它是空的?我在我的.h類中定義了IBOutlet對象,並通過IB將它連接起來沒有問題,但idk爲什麼仍然爲空。任何幫助將不勝感激。Iboutlet已連接但仍然說它是空的

+0

該類是如何實例化的?特別是,你確定它是通過NIB加載的嗎? – 2010-12-14 22:44:10

+0

顯示您的代碼! – 2010-12-14 22:47:14

+0

這是標準的視圖應用程序模板,我只是想讓一個基本的計算器練習。我的筆尖文件作爲子視圖添加到應用程序代理 – Jloew 2010-12-14 22:47:59

回答

-2

試着改變你的屬性複製(或保留,但副本更地道針對這種情況):

@property (copy) IBOutlet UILabel *display;

assign屬性不增加引用計數的字符串,因此不存在保證它在你需要的時候仍然存在。

+2

編號只應在您不想在底下更改某些內容時使用,例如NSMutableArray或NSString。此外,在使用'retain'和'assign'與nib文件之間存在一些爭議。 – joshpaul 2010-12-14 23:40:04

0

好的,首先,讓我們刪除一些無關的東西,並專注於你所需要的核心。

#import "CalculatorBrain.h" 

@interface CalculatorViewController : UIViewController 
{ 
    CalculatorBrain* _calculatorModel; 
    UILabel *display; 
} 

- (IBAction) digitPressed:(UIButton *)sender; 

@property (nonatomic, retain) IBOutlet UILabel *display; 

@end 


#import "CalculatorViewController.h" 

@implementation CalculatorViewController 
@synthesize display; 

- (void)dealloc 
{ 
    [display release], display = nil; 
    [_calculatorModel release]; 
    [super dealloc]; 
} 

- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 
    if (! _calculatorModel) 
    { 
     _calculatorModel = [[CalculatorBrain alloc] init]; 
    } 
} 

- (void)viewDidAppear:(BOOL)animated 
{ 
    [super viewDidAppear:animated]; 
    NSLog(@"display is: %@", display); 
} 

- (IBAction)digitPressed:(UIButton *)sender 
{ 
    NSString *currentDigit = [[sender titleLabel] text]; 
    [display setText:[NSString stringWithFormat:@"%@", currentDigit]]; 
} 

@end 

讓我們知道當您在InterfaceBuilder中設置標籤(display)和動作(digitPressed :)時會發生什麼。

相關問題