記事一覧

Transparent background on UIView

UIViewの背景を透明にするには、
aView.backgroundColor = [UIColor clearColor];
みたいにコードを書かないといけないようです。
IB上にそういうオプションがあれば一発なのに・・

To have the background of UIView transparent you have to set the background color to "clearColor" programatically like this:
aView.backgroundColor = [UIColor clearColor];
I wonder why there aren't the option to do that on IB....

My most frequent error when working with Interface Builder

Interface BuilderでUIを作って XCode でビューコントローラを書いたものの全く何も動かない・・・
というケースがよくあるんですが、僕の場合ほとんど原因は IB書類のセーブ忘れ;
何度も経験してるのだけどそのたびにあれ?あれ?とか言ってけっこう時間を食ってしまうのでアホくさいことこの上ないです。

Having built a neat UI on the Interface Builder and
a nice view controller on XCode but
nothing reacts at all....
In such situation, most of the case I forgot to save the IB document after changing.
Pretty silly, but I do this very often, and spend a certain length of time until I notice...