カスタム ビューを作成するために UIVIew をサブクラス化しました。
-(UIMyMessageView*)init:(NSString*)withMessage
{
[super initWithFrame:messageFrame];
// I Would like to do :
self->layer.cornerRadius = 8; // This doesn't compile
}
独自のレイヤーを設定できないのはなぜですか?
カスタム ビューを作成するために UIVIew をサブクラス化しました。
-(UIMyMessageView*)init:(NSString*)withMessage
{
[super initWithFrame:messageFrame];
// I Would like to do :
self->layer.cornerRadius = 8; // This doesn't compile
}
独自のレイヤーを設定できないのはなぜですか?
QuartzCore フレームワークを含める
#import <QuartzCore/QuartzCore.h>
このフレームワークもプロジェクトに含めます。
http://meandmark.com/blog/2011/03/xcode-4-adding-a-framework-to-your-project/
やってみました:
self.layer.cornerRadius = 8;