How to do parsing in Objective C?
Posted
by Tattat
on Stack Overflow
See other posts from Stack Overflow
or by Tattat
Published on 2010-04-14T13:10:59Z
Indexed on
2010/04/14
13:13 UTC
Read the original article
Hit count: 432
objective-c
|parsing
In Java, I can easily pass data using (ObjectA)objB. How can I do the similar things in Objective C? Also, why the Objective C can't return an Object, but only can return the id only? I do -(MyObj)returnMyObject{ }, but the Xcode warning me that I can't use the MyObj, but I can return the id..... -(id) returnMyObject {}.
© Stack Overflow or respective owner