代码如下,ENUM已经定义在Account.h文件里面了
typedef NS_ENUM(NSUInteger, httpMethod){
GET = 0,
POST,
PUT,
DELETE
};
//方法定义
-(void) location:(httpMethod)httpMethod withLocation:(NSString *)location;
//在别的类里,调用方法,我想这么做,但是不知道正确的语法
[self.myAccount Account.httpMethod.PUT location: withLocation:location];
天蓬老师2017-05-02 09:25:03
이렇게만 정의할 수 있습니다
으아악다음과 같이 enum을 정의하는 것이 좋습니다.
으아악Swift는 귀하가 요청하는 것을 수행할 수 있습니다.
으아악