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 trialStephen Printup
UX Design Techdegree Student 45,252 PointsWorking with Multiple View Controllers: Challenge 2 of 2
Before we finish let's also programmatically change the tint color of our button to something more appealing. I've set up a UIColor object for you to use and like last time, I want you to use the documentation or the Internet to figure out which method to use. Assign the redColor object to the tint property of the timerButton.
I've tried multiple variations of wrong code to implement the tint property with the redColor. I've searched the webs and the forum and rewatched the video.
#import "UIViewController.h"
#import "UIButton.h"
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIButton *timerButton;
@end
#import "ViewController.h"
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
timerButton.setTintColor:UIColor *redColor = [UIColor redColor];
// Enter your code below!
[self.timerButton setTitle:@"Start!"
forState:UIControlStateNormal];
}
@end
2 Answers
Steve Hunter
57,712 PointsHi Stephen,
I guess you're fed up with trying to get that to work by now!
Try something like [self.timerButton setTintColor: redColor];
That should work for you.
Steve.
Stephen Printup
UX Design Techdegree Student 45,252 PointsThanks Steve, yes I have an upper limit on these things. It is about an hour, however today I was sitting in the sun so it was more like 45 mins.