mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-20 10:45:05 +00:00
19 lines
396 B
Objective-C
19 lines
396 B
Objective-C
//
|
|
// NoteSettingsTableViewController.h
|
|
// Leanote
|
|
//
|
|
// Created by life on 15/6/2.
|
|
// Copyright (c) 2015 Leanote.com. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "Note.h"
|
|
|
|
@interface NoteSettingsTableViewController : UITableViewController
|
|
|
|
- (instancetype)initWithNote:(Note *)note shouldHideStatusBar:(BOOL)shouldHideStatusBar;
|
|
@property (nonatomic, strong) Note *note;
|
|
|
|
@end
|