java | Objective-C | |
メソッド | Integer num = new Integer(120); num.toString(); |
NSNumber* num = [NSNumber numberWithInt:120]; [num stringValue]; |
連想配列 | Map | Dictionary |
クラス | public class Moge{ } |
#import “Moge.h” @implementation Moge //メソッドの実装などなど @end |
インターフェース | public class classname implements xxx | //delegate@interface classname : rootObj <xxx> |