iPhoneのImage系API いろいろ(1) Posted in Quartz/OS X Graphics, iPhone on 12 月 14th, 2008 by Norihisa Nagano – 2 Comments iPhoneで画像を扱うときは、CocoaのNSImageに変わって、UIImageを使います。 UIImageはproperty、.CGImageでCGImageRefを取得できます。 で、UIImageはいろんな方法で作れたり取得できるのですが、retain関係がどうなってるのか、いまいちよくわからない! @property(nonatomic,readonly) CGImageRef CGImage; こうなっております。 readonlyはgetterのみ。入れ替えできない、という意味ですね。 nonatomicって何よ?ということで調べてみ