getter attribute on property does not match inherited from NSOperation

落爺英雄遲暮 提交于 2019-12-13 18:29:45

问题


I have recently updated to xCode 6.1 and ever since then I'm getting this warning msg for on my project Which was running smoothly without errors and warnings

getter attribute on property does not match inherited from NSOperation

Below is my code

@interface HttpTransceiver : NSOperation {

@private
    ServiceRequest     *m_serviceRequest;
    BOOL                m_executing;
    BOOL                m_finished;
    NSURLConnection     *m_urlConnection;
    NSInteger           m_statusCode;
    NSMutableURLRequest *m_urlRequest;
    NSMutableData       *m_receivedData;
    NSHTTPURLResponse   *m_receivedResponse;
}

@property(nonatomic, retain)    ServiceRequest *serviceRequest;
@property                       BOOL            executing;
@property                       BOOL            finished;

@property BOOL executing; This is the line where I'm getting above warning. I tried to adjust property but it didn't workout. Please Advise

Thanks

来源:https://stackoverflow.com/questions/27124219/getter-attribute-on-property-does-not-match-inherited-from-nsoperation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!