저는 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"의 텍스트 속성을 설정할 수없는 이유는 무엇입니까?