If you've seen me here before, I've been quite noob.
But like i promised, i read up and am making an RSS organizer application all my, myself. but i ran into some issues... After debugging, I am left with 1 error (twice)
EDIT: After some tinkering i discovered by first problem, but now i have new ones...
"fatal error: method definition not in @implementation context"
heres the code...
my header:
my implementation:
But like i promised, i read up and am making an RSS organizer application all my, myself. but i ran into some issues... After debugging, I am left with 1 error (twice)
EDIT: After some tinkering i discovered by first problem, but now i have new ones...
"fatal error: method definition not in @implementation context"
heres the code...
my header:
Code:
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface NavController : UINavigationController {
IBOutlet id delegate;
UIView *infoView;
UIView *settingsView;
}
@end
- (IBAction)infoClick:(id)sender;
- (IBAction)settingsClick:(id)sender;
my implementation:
Code:
#import "Navcontroller.h"
@class infoView
@implementation Navcontroller
@end
- (IBAction)infoClick:(id)sender {
[self addSubView:infoView];
}
- (IBAction)settingsClick:(id)sender {
}