• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在iOS 7的UIButton上删除下划线

用户头像
it1352
帮助1

问题说明

任何人知道如何移除因为辅助功能而出现的 UIButton 下划线?

Any one know how to remove the UIButton underline that appears because of Accessibility?

因为用户已启用按钮形状)

(I know it's because the user turned on "Button Shapes")

如何以编程方式或通过在Xcode中设置某些属性来删除?

How can I remove that programmatically, or by setting some property in Xcode?

正确答案

#1

检查下面代码

NSMutableAttributedString *attrStr = [[yourBtnHere attributedTitleForState:UIControlStateNormal] mutableCopy];//or whatever the state you want
[attrStr enumerateAttributesInRange:NSMakeRange(0, [attrStr length])
                            options:NSAttributedStringEnumerationLongestEffectiveRangeNotRequired
                         usingBlock:^(NSDictionary *attributes, NSRange range, BOOL *stop)
{
    NSMutableDictionary *mutableAttributes = [NSMutableDictionary dictionaryWithDictionary:attributes];
    [mutableAttributes removeObjectForKey:NSUnderlineStyleAttributeName];
    [attrStr setAttributes:mutableAttributes range:range];
}];

•使用检查器/ IB:
选择 UIButton

显示属性检查器

文本设置应在归因中。选择文本,点击喜欢的项目删除下划线设置它在

• With the inspector/IB: Select your UIButton.
Show the Attributes Inspector.
The Textsettings should be in Attributed. Select the text, click on the fond item remove the Underlining setting it at none.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhccigjh
系列文章
更多 icon
同类精品
更多 icon
继续加载