CRSMapProjection
Objective-C
@interface CRSMapProjection : NSObject <CRSCommonOperation>
Swift
class CRSMapProjection : NSObject, CRSCommonOperation
Map Projection
-
Name
Declaration
Objective-C
@property (nonatomic, strong) NSString *name;
Swift
var name: String! { get set }
-
Method
Declaration
Objective-C
@property (nonatomic, strong) CRSOperationMethod *method;
Swift
var method: CRSOperationMethod! { get set }
-
Identifiers
Declaration
Objective-C
@property (nonatomic, strong) NSMutableArray<CRSIdentifier *> *identifiers;
Swift
var identifiers: NSMutableArray! { get set }
-
Create
Declaration
Objective-C
+ (CRSMapProjection *)create;
Swift
class func create() -> CRSMapProjection!
Return Value
new instance
-
Initialize
Declaration
Objective-C
- (instancetype)init;
Swift
init!()
Return Value
new instance
-
Initialize
Declaration
Objective-C
- (instancetype)initWithName:(NSString *)name andMethod:(CRSOperationMethod *)method;
Swift
init!(name: String!, andMethod method: CRSOperationMethod!)
Parameters
name
name
method
method
Return Value
new instance