IBOutletを宣言するのとそうでないのはどういう意味@interface
ですか?簡単なテストでは、割り当てはどちらの場合でも機能します。
@interface MyViewController : UIViewController <UITextFieldDelegate> {
IBOutlet UITextField *textField;
IBOutlet UILabel *label;
NSString *string;
/*IBOutlet*/ UILabel *total;//What does it mean to declare IBOutlet here?
}
@property (nonatomic, retain) IBOutlet UILabel *total;
.h
@synthesize total;
total.text = @"23";