タグ付けされた質問 「cornerradius」

25
UIViewの左上隅と右上隅のみにcornerRadiusを設定するにはどうすればよいですか?
のcornerRadius左上隅と右上隅のみを設定する方法はありUIViewますか? 以下を試してみましたが、もう景色が見えなくなりました。 UIView *view = [[UIView alloc] initWithFrame:frame]; CALayer *layer = [CALayer layer]; UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:frame byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(3.0, 3.0)]; layer.shadowPath = shadowPath.CGPath; view.layer.mask = layer;

8
UIlabel layer.cornerRadiusがiOS 7.1で機能しない
私は現在、プロパティを持つUILabelを見ています。iOS7.0がaddMessageLabel.layer.cornerRadius = 5.0f;インストールされているデバイスでは、角が丸くなっています。iOS 7.1がインストールされているデバイスでは、角が丸くありません。 これはiOS 7.1の単なるバグですか?

14
スイフト-コーナー半径とドロップシャドウの問題
角が丸く、ドロップシャドウのあるボタンを作成しようとしています。どのように切り替えても、ボタンが正しく表示されません。私が試したmasksToBounds = falseとmasksToBounds = true、しかし、いずれかのコーナー半径が動作し、影ができない場合、または影が動作し、コーナー半径はボタンの角をクリップしていません。 import UIKit import QuartzCore @IBDesignable class Button : UIButton { @IBInspectable var masksToBounds: Bool = false {didSet{updateLayerProperties()}} @IBInspectable var cornerRadius : CGFloat = 0 {didSet{updateLayerProperties()}} @IBInspectable var borderWidth : CGFloat = 0 {didSet{updateLayerProperties()}} @IBInspectable var borderColor : UIColor = UIColor.clearColor() {didSet{updateLayerProperties()}} @IBInspectable var shadowColor : …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.