I want to maintain data encapsulation and have separated an NSObject class (.h and .m file) from my ViewController.m.
I have the Objective-C working correctly where my class is instantiated in the ViewController's viewDidLoad and I can set, get and NSLog the private values via my NSObject's methods.
What I can't do is in the MainStoryboard assign the Connection Outlets and Received Actions. My IBOutlets (a UILabel and UIButton) aren't showing in the Connection Inspector. However, I have many Objects in my ViewController's .[hm] file that I can setup the Outlet Connections to. It's just this new file's Objects that I can't view in the storyboard tool.
What am I doing wrong?
// GameTimer.h
#import <Foundation/Foundation.h>
@interface GameTimer : NSObject {
UILabel *gameTimerLabel;
NSTimer *gameTimer;
unsigned int gameTimerTicks;
}
@property unsigned int gameTimerTicks;
@property (nonatomic, retain) IBOutlet UILabel *gameTimerLabel;
@property (nonatomic, retain) IBOutlet UIButton *startButton;
// instantiate the timer
- (IBAction)onStartPressed:(id)sender;
// Update the gameTimerLabel, show new value to user
- (void)gameTimerShow;
// selector func for our timer, manages the tick count for all our timers
- (void)gameTimerEvent;
@end
// FirstViewController.m
#import "FirstViewController.h"
#import "GameTimer.h"
@interface FirstViewController ()
@end
@implementation FirstViewController
GameTimer *myGameClock;
- (void)viewDidLoad
{
[super viewDidLoad];
myGameClock = [[GameTimer alloc] init];
[myGameClock setGameTimerTicks:33*10];
[myGameClock gameTimerShow];
unsigned long myticks = myGameClock.gameTimerTicks;
NSLog(@"Ticks=%lu", myticks);
}