UIScrollView in a TabBar controlled navigation - IPhone

Posted by user362722 on Stack Overflow See other posts from Stack Overflow or by user362722
Published on 2010-06-09T17:59:17Z Indexed on 2010/06/09 18:02 UTC
Read the original article Hit count: 327

I have a TabBarControlled view navigation and i want to display a UIScrollView in one of the Tabs, but whenever i click on this tab the error-code:

...this class is not key value coding-compliant for the key...

appears.

My code: Code:

#import <UIKit/UIKit.h>


@interface BillViewController : UIViewController <UIScrollViewDelegate> {
 IBOutlet UIScrollView *olta;
}

@property (nonatomic,retain) IBOutlet UIScrollView *olta;

@end

My code has a IBOutlet UIScrollView and it is connected to the IB. My class also implements the desired protocol and the delegate is connected to the BillViewController-class.

thanks

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uiscrollview