devinross / tapkulibrary

tap + haiku = tapku, a well crafted open source iOS framework
http://devinross.com/tapku/documentation
MIT License
3.9k stars 653 forks source link

refactor setCancelled method #289

Closed Julyyq closed 9 years ago

Julyyq commented 10 years ago

With Xcode 6, _cancelled = cancelled occurs an error. Apple maybe deprecate this written pattern under ARC.

kenji21 commented 9 years ago

Yes, you might manually synthesize the property :

@implementation TKHTTPRequest

@synthesize cancelled=_cancelled;