web-dev-qa-db-ja.com

Xcode 6でストーリーボードにボーダー付きのボタンを追加する方法

Xcode 6でボーダー付きのボタンを作成します。たとえば、このライブラリのボタンのように見せたいです https://github.com/a1anyip/AYVibrantButton -特別な視覚効果なし。コードを書かずにIBで設定を行うことでこれを実現することは可能ですか?ありがとう。

11
James

ストーリーボードにランタイム属性を追加できます

ボタンを選択してください

Runtime Attribute in storyboard

28
Leo

ここの「addImageButton」は私のUIButtonであり、ボタンの境界線を作成するために以下のコード行を使用しています。

 [addImageButton.layer setBorderWidth:5];
[addImageButton.layer setBorderColor:[[UIColor redColor] CGColor]];
[addImageButton setTintColor:[UIColor whiteColor]];
[addImageButton setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

Snapshot

これで問題が解決することを願っています。

6
user1722889