mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-15 07:01:16 +08:00
29 lines
512 B
Objective-C
29 lines
512 B
Objective-C
//
|
|
// LeanoteiPadMainViewController.m
|
|
// Leanote
|
|
//
|
|
// Created by Wong Zigii on 15/9/19.
|
|
// Copyright © 2015年 Leanote. All rights reserved.
|
|
//
|
|
|
|
#import "LeanoteiPadSplitViewController.h"
|
|
|
|
@interface LeanoteiPadSplitViewController ()<UISplitViewControllerDelegate>
|
|
|
|
@end
|
|
|
|
@implementation LeanoteiPadSplitViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
|
|
@end
|