Files
leanote-ios/Leanote/controller/category/CategoryViewController.h
2015-08-21 23:49:41 +08:00

22 lines
475 B
Objective-C

//
// CategoryViewController.h
// Leanote
//
// Created by life on 15/7/19.
// Copyright © 2015年 Leanote. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CategoryProtocol.h"
//#import "NotebookController.h"
@interface CategoryViewController : UIViewController<CategoryProtocol>
@property (weak, nonatomic) IBOutlet UISegmentedControl *segmentControl;
@property (weak, nonatomic) IBOutlet UIView *contentView;
- (IBAction)segmentChanged:(id)sender;
@end