AFNetworking/Example/AFNetworking watchOS Extension/InterfaceController.m
2015-08-03 11:24:17 -05:00

39 lines
675 B
Objective-C

//
// InterfaceController.m
// AFNetworking watchOS Extension
//
// Created by Kevin Harwood on 8/3/15.
// Copyright © 2015 Gowalla. 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