I get warning when I run my app in iOS7 "'isa' is deprecated", I don't have any idea how to fix this warning message. Please any one help on this.
array->isa = _JKArrayClass;
Include <objc/runtime.h>
.
Replace everything like array->isa = _JKArrayClass;
with object_setClass(array, _JKArrayClass)
And everything like class = array.isa
with class = object_getClass(array)