forked from jonasschnelli/I7CoreTextExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDetailViewController.h
More file actions
34 lines (23 loc) · 864 Bytes
/
Copy pathDetailViewController.h
File metadata and controls
34 lines (23 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// DetailViewController.h
// CoreTextExample
//
// Created by Jonas Schnelli on 18.05.10.
// Copyright include7 AG 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@class RootViewController;
@interface DetailViewController : UIViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
UIPopoverController *popoverController;
UIToolbar *toolbar;
NSManagedObject *detailItem;
UILabel *detailDescriptionLabel;
RootViewController *rootViewController;
}
@property (nonatomic, retain) IBOutlet UIToolbar *toolbar;
@property (nonatomic, retain) NSManagedObject *detailItem;
@property (nonatomic, retain) IBOutlet UILabel *detailDescriptionLabel;
@property (nonatomic, assign) IBOutlet RootViewController *rootViewController;
- (IBAction)insertNewObject:(id)sender;
@end