mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 05:57:04 +00:00
20 lines
269 B
Plaintext
20 lines
269 B
Plaintext
@import <AppKit/AppKit.j>
|
|
@import "Test1Controller.j"
|
|
|
|
|
|
@implementation Test1Controller : CPViewController
|
|
{
|
|
}
|
|
|
|
- (id)init
|
|
{
|
|
return [super initWithCibName:@"Test1View" bundle:nil];
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
CPLog("Loaded %@ view %@", self, [self view]);
|
|
}
|
|
|
|
@end
|