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 trialDavid McLaughlin
3,615 Pointserror: remember to call the correct method on the 'imageView'
I can't remember the method this is what I have to start animation:
-(void) *imageView { [self.imageView.startAnimating]; }
1 Answer
Amit Bijlani
Treehouse Guest TeacherYour code implies that you are creating a new method called imageView
when you need to use the imageView
property as self.imageView
. You then need to allocate and initialize a new UIImageView
and assign it to self.imageView
. If you are still confused I recommend re-watching the video because it's exactly the same.