isa was deprecated in ios7
Opened this issue · 2 comments
angelmic commented
There are many place using "isa", in the Xcode 5.1.1 will get errors.
How to correct that ?
dblapps commented
On Wednesday, May 14, 2014, angelmic notifications@github.com wrote:
There are many place using "isa", in the Xcode 5.1.1 will get errors.
How to correct that ?
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/11
.
David Levi
President
Double Apps Inc.
dave@double-apps.com
Twitter @Dave_Levi
(865) 329-7127
angelmic commented
I use
#pragma clang diagnostic ignored "-Wdeprecated-objc-isa-usage"
to solve this issue.
Thanks anyway