2009-04-15 4 views
1

저는 viewController의 인스턴스를 생성 한 다음 속성의 텍스트 인 UILabel을 설정하려고합니다.인스턴스화 후 ViewController의 속성을 설정하십시오.

BoyController *boyViewController = [[BoyController alloc] initWithNibName:@"BoyView" bundle:nil]; 
    UILabel *newUILabel = [[UILabel alloc] init]; 
    newUILabel.text = [astrology getSignWithMonth:month withDay:day]; 
    boyViewController.sign = newUILabel; 
    NSLog(@" the boyviewcontroller.sign.text is now set to: %@", newUILabel.text); 
    [newUILabel release]; 

그러나 아무 소용이 ...

아니에요 :

BoyController *boyViewController = [[BoyController alloc] initWithNibName:@"BoyView" bundle:nil]; 
     NSString *newText = [astrology getSignWithMonth:month withDay:day]; 
     boyViewController.sign.text = newText; 
     NSLog(@" the boyviewcontroller.sign.text is now set to: %@", boyViewController.sign.text); 
     [newText release]; 

내가 이것을 시도했지만 작동하지 않았다

은 ...

그래서 나는 다음과 같은 시도 BoyViewController에서 UILabel "sign"의 텍스트 속성을 설정할 수없는 이유는 무엇입니까?

답변

1

인터페이스 빌드에서 아웃렛을 바인딩 했습니까? 그렇지?

첫 번째 예제의 부호 콘센트를 Interface Builder에 바인딩하여 실제로 원하는 텍스트로 설정해야하는 것처럼 보입니다.

NSString *newText = [astrology getSignWithMonth:month withDay:day]; 
[[boyViewController sign] setText:newText]; 

This 당신이 바인딩에 대해 알아야 할 것입니다 : 당신이 인터페이스 빌더에서의 실제 UI 구성 요소에 콘센트를 결합하면

, 다음과 같은 일을 할 수 있어야합니다.

두 번째 예는 나에게 전혀 의미가 없습니다.

4

이니셜 라이저가 nib 파일을 실제로 메모리에로드하지 않는 문제가 있습니다. 대신, 응용 프로그램이보기 컨트롤러의 view 속성을 요청할 때까지 펜촉의로드가 지연됩니다. 따라서 컨트롤러에 액세스 할 때 컨트롤러의 sign 속성이 null입니다.

수동으로 예를 들어 작업을 할 것 컨트롤러의 view 속성을 요청 ... 그러나

BoyController *boyViewController = [[BoyController alloc] initWithNibName:@"BoyView" bundle:nil]; 

[boyViewController view]; // !!!: Calling [... view] here forces the nib to load. 

NSString *newText = [astrology getSignWithMonth:month withDay:day]; 
boyViewController.sign.text = newText; 
// and so on... 

, 난 당신이 정말 뭘 하려는지 만들고 그것을 설정하기 전에 뷰 컨트롤러를 구성 할 것을 추측에는 요 자유롭게 할 수 있습니다. (아마 모달로 표시 할 수 있습니다.) 수동으로 [... view]을 호출하면 장기적인 솔루션이 될 수 없습니다.

더 나은 레이블에 할당 viewDidLoad을 구현 한 후 레이블 텍스트에보기 컨트롤러에 별도의 속성을 설정하는 것입니다

@interface BoyViewController : UIViewController { 
    IBOutlet UILabel *label; 
    NSString *labelText; 
} 
@property(nonatomic, copy)NSString *labelText; 
@end 

@implementation 
@synthesize labelText; 

- (void)viewDidLoad 
{ 
    [label setText:[self labelText]]; 
} 

// and so on... 

@end 

이 레이블 텍스트의 추가 혜택이 경우 리셋되고있다 보기가 메모리 부족 이벤트 중에 제거됩니다.