views:

147

answers:

1

I've been trying to implement the Three20 framework in my iPhone SDK app.

I'm a bit confused as to implementing the proper methods. Is there any guide as to what to implement in order to make the TTPhotoViewController work? I know how to implement protocols, but the code is very difficult to read.

Anyone know any guides with this specific framework or have any experience with this and can explain what I need to implement specifically? (because my app is crashing probably because I haven't implemented all the needed methods)

+1  A: 

Just search three20's source files for the declaration of the missing protocol. You'll find a header file that shows exactly what methods you need. Copy paste them into your code and implement away!

Samuel Goodwin
How do I implement the properties?
Anthony Glyadchenko