忍者ブログ
Welcome to my site. Please sitting on the couch, relax and see the web site.

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

RootViewController.h

//
// RootViewController.h
// PlainNote
//
//

#import <UIKit/UIKit.h>

@interface RootViewController : UITableViewController {
NSMutableArray* Notes;
IBOutlet UIBarButtonItem *addButtonItem;
IBOutlet UITableView *listTableView;
}
@property (nonatomic, retain) NSMutableArray* Notes;
@property (nonatomic, retain) UIBarButtonItem* addButtonItem;
@property (nonatomic, retain) UIBarButtonItem* helpButton;
@property (nonatomic, retain) UIBarButtonItem* syncButton;
@property (nonatomic, retain) UITableView* listTableView;


- (IBAction) addButtonPressed: (id) sender;

- (NSString *)applicationDocumentsDirectory;
- (void)createEditableCopyOfDatabaseIfNeeded;
- (void) applicationWillTerminate: (NSNotification *)notification;
@end

拍手[0回]

PR