NTDAppStoreRoundFramedButton 类似于 iOS 7 App Store 中的圆框按钮,更具体地说,是显示 '$0.99' 或 '完成' 的按钮。
UIButton
。NTDAppStoreRoundFramedButton
。为了使 Autolayout 正常工作,请在 属性检查器 中设置 内边距 为以下值
顶部和底部:5
左边和右边:11
然后,就可以像使用 UIButton
一样使用它了。
NTDAppStoreRoundFramedButton.h
,其中包含 4 个方法。基本上,它将以下属性设置为指定的值
属性 | 值 |
---|---|
titleFontSize | 13 |
cornerRadius | 4 |
borderWidth | 1 |
borderColor | button.tintColor.CGColor |
topAndBottomInset | 5 |
leftAndRightInset | 11 |
这就是为什么需要将内边距在属性检查器中设置以使 Autolayout 正常工作。