Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJorge Decuir
2,307 PointsAbout buttons views labels etc.
Hi i hope you're having a great night!, i recently did the homework asked in this particular crystalball application about erasing the button from the storyboard and creating it programmatically. This is the code that i have done:
- (void)viewDidLoad
{
[super viewDidLoad];
UIImage *buttonOff = [UIImage imageNamed:@"button-off"];
UIImage *buttonOn = [UIImage imageNamed:@"button-on"];
UIButton *predictButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[predictButton addTarget:self action:@selector(buttonPressed) forControlEvents:UIControlEventTouchUpInside];
[predictButton setBackgroundImage:buttonOff forState:UIControlStateNormal];
[predictButton setBackgroundImage:buttonOn forState:UIControlStateHighlighted];
predictButton.frame = CGRectMake(85.0, 470.0, 160.0, 40.0);
UIImage * backgroundImage = [UIImage imageNamed:@"background"];
UIImageView * imageView = [[UIImageView alloc] initWithImage:backgroundImage];
[self.view insertSubview:imageView atIndex:0];
[self.view insertSubview:predictButton aboveSubview:imageView];
self.crystalBall = [[CrystalBall alloc] init];
}
It seems to work pretty nice, but my question is, how should i separate the button specs? do i should create a custombuttonclass with the methods? or just put some methods in viewcontroller and call them at viewdidload? what is the propper way to separate and handle my views code? for labels buttons etc. Hope you can help me!
2 Answers
John W
21,558 PointsButtons are one of those things that you should generally "never" subclass. Instead, you should "always" use decorator methods such as what you have done to change its appearances and behaviors. So what you've done is the correct way to go.
Jorge Decuir
2,307 PointsWow thanks John, so, for example if i have to customize a lot of buttons saying that i have more views with buttons should i go like what i did before? but this just no fill the viewController.m with a lot of code if i have more views to modify or customize??! Thanks for the answer!