TextView, UILabel, UIButton等に枠線をつける


TextView, UILabel, UIButton等に枠線をつける方法

1. QuartzCore/QuartzCore.hをインポートする

#import <QuartzCore/QuartzCore.h>

2. 枠線をつけたいオブジェクトに対して以下の処理を加える

// 枠線の色
[[self.txtContents layer] setBorderColor:[[UIColor blackColor] CGColor]];
// 枠線の太さ
[[self.txtContents layer] setBorderWidth:1.0];

3. ちなみに以下のように書くと、枠線を角丸にできる

[[self.txtContents layer] setCornerRadius:10.0];
[self.txtContents setClipsToBounds:YES];

この記事を書いた人

Hoge Huga