FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NSAVersion.h
Go to the documentation of this file.
1 //
2 // NSAVersion.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 13. 8. 1..
6 // Copyright (c) 2013 youknowone.org. All rights reserved.
7 //
8 
13 #import <Foundation/Foundation.h>
14 
15 @interface NSAVersion : NSObject {
16  NSString *_string;
17  NSInteger _major, _minor, _bugfix;
18 }
19 
20 @property(nonatomic,readonly) NSString *string;
21 @property(nonatomic,readonly) NSInteger major, minor, bugfix;
22 
23 - (instancetype)initWithString:(NSString *)string;
24 + (instancetype)versionWithString:(NSString *)string;
25 
26 @end
NSString * _string
Definition: NSAVersion.h:16
NSInteger _minor
Definition: NSAVersion.h:17
NSInteger _bugfix
Definition: NSAVersion.h:17
NSInteger _major
Definition: NSAVersion.h:17
Definition: NSAVersion.h:15