私はviewControllerのインスタンスを作成し、そのプロパティのテキストUILabelを設定しようとしています。インスタンス化の後にViewControllerのプロパティを設定する
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];
だから私は次のことを試してみました...
を、私はこれを試してみましたが、それはうまくいきませんでした:
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];
しかし、無駄..
を私はありませんBoyViewControllerでUILabelの "sign"のテキストプロパティを設定できない理由を教えてください。