2011-01-01から1ヶ月間の記事一覧

UIColorをRGBAに分解

UIColorをRGBAに分解します。 UIColor *color = [UIColor colorWithRed:1.0 green:0.5 blue:0.2 alpha:1.0]; const CGFloat *components = CGColorGetComponents(color.CGColor); CGFloat r = components[0]; CGFloat g = components[1]; CGFloat b = compon…

UITextFieldのUnitTestエラー

UITextFieldを使用してるとLogicTestで下記のエラーが出る exited abnormally with code 133 uitextfield いろんなところで話題に挙ってるみたいだけど、良い解決方法が見つけられない。。。 とりあえず今のところの回避方法だけメモ @interface UITextViewD…