YapDatabase/Framework/TestModuleMap-watchOS/Extension/ExtensionDelegate.m
2016-09-07 16:28:55 -07:00

27 lines
962 B
Objective-C

//
// ExtensionDelegate.m
// TestModuleMap-watchOS Extension
//
// Created by Robbie Hanson on 9/7/16.
// Copyright © 2016 Deusty LLC. All rights reserved.
//
#import "ExtensionDelegate.h"
@implementation ExtensionDelegate
- (void)applicationDidFinishLaunching {
// Perform any final initialization of your application.
}
- (void)applicationDidBecomeActive {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillResignActive {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, etc.
}
@end