vote up 1 vote down star
1

I'm creating an instance of a viewController, and then trying to set the text on of it's properties, a UILabel.

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];

I tried this, but it didn't work...

So I tried the following:

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];

But no avail..

I'm not sure why I can't set the text property of the UILabel "sign" in boyViewController..

flag

62% accept rate

1 Answer

vote up 1 vote down

Did you bind your outlets at Interface Builder?

It seems that you need to bind sign outlet of the first example into Interface Builder in order to actually set that text to whatever you want.

Once you bind your outlet to the actual UI component at Interface Builder, then you should be able to do something like:

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

This is what you need to know about binding.

Your second example does not make sense at all to me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.