-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathXCXibDefinition.h
More file actions
executable file
·36 lines (25 loc) · 965 Bytes
/
XCXibDefinition.h
File metadata and controls
executable file
·36 lines (25 loc) · 965 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
35
36
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import <XcodeEditor/XCAbstractDefinition.h>
@interface XCXibDefinition : XCAbstractDefinition
{
NSString* _name;
NSString* _content;
}
@property(nonatomic, strong, readonly) NSString* name;
@property(nonatomic, strong) NSString* content;
+ (XCXibDefinition*)xibDefinitionWithName:(NSString*)name;
+ (XCXibDefinition*)xibDefinitionWithName:(NSString*)name content:(NSString*)content;
- (id)initWithName:(NSString*)name;
- (id)initWithName:(NSString*)name content:(NSString*)content;
- (NSString*)xibFileName;
@end