39 lines
686 B
Objective-C
39 lines
686 B
Objective-C
//
|
|
// InterfaceController.m
|
|
// YapDatabaseTesting WatchKit Extension
|
|
//
|
|
// Created by Robbie Hanson on 7/21/16.
|
|
// Copyright © 2016 Deusty LLC. All rights reserved.
|
|
//
|
|
|
|
#import "InterfaceController.h"
|
|
|
|
|
|
@interface InterfaceController()
|
|
|
|
@end
|
|
|
|
|
|
@implementation InterfaceController
|
|
|
|
- (void)awakeWithContext:(id)context {
|
|
[super awakeWithContext:context];
|
|
|
|
// Configure interface objects here.
|
|
}
|
|
|
|
- (void)willActivate {
|
|
// This method is called when watch view controller is about to be visible to user
|
|
[super willActivate];
|
|
}
|
|
|
|
- (void)didDeactivate {
|
|
// This method is called when watch view controller is no longer visible
|
|
[super didDeactivate];
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|