forked from onevcat/VVDocumenter-Xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVVProject.h
More file actions
30 lines (18 loc) · 680 Bytes
/
VVProject.h
File metadata and controls
30 lines (18 loc) · 680 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
//
// VVProject.h
// VVDocumenter-Xcode
//
// Created by 夏天味道 on 15/6/25.
// Copyright (c) 2015年 OneV's Den. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface VVProject : NSObject
@property (nonatomic, copy) NSString *directoryPath;
@property (nonatomic,copy,readonly) NSString *workspacePath;
@property (nonatomic, copy) NSString *projectName;
@property (nonatomic, copy) NSDictionary *infoDictionary;
@property (nonatomic, copy) NSString *projectVersion;
@property (nonatomic,copy) NSDictionary *pbxprojDictionary;
@property (nonatomic,copy) NSString *organizeationName;
+ (instancetype)projectForKeyWindow;
@end