はい、あなたは正しいですが、設定されていますself.backgroundLayer.layer.borderWidth
、私はあなたの場合に役立つかもしれない次のコードを置きます。
ラウンドボーダーオブを与えるためにUIView
。
#import "QuartzCore/QuartzCore.h"
フレームワークを追加します。(あなたはすでにそれをしました)
self.backgroundLayer = [UIView alloc] initWithFrame:CGRectMake(@"As You Want")];
self.backgroundLayer.backgroundColor = [UIColor redColor];
self.backgroundLayer.layer.cornerRadius = 10.0; // set cornerRadius as you want.
self.backgroundLayer.layer.borderColor = [UIColor lightGrayColor].CGColor; // set color as you want.
self.backgroundLayer.layer.borderWidth = 1.0; // set borderWidth as you want.
[self.view addSubView:self.backgroundLayer];
あなたの場合、の境界線を与えますUIView
。