在滑动菜单中使用图标字体(UTF-8)UITableViewRowAction(swift)

时间:2014-12-05 08:31:02

标签: ios swift utf-8 swipe

我想在我的滑动菜单中使用图标字体。如何才能做到这一点? UITableViewRowAction中的标题是NSString类型,因此我无法使用AttributedString(收到错误消息)。如果我将它键入字符串或使用像“\ u {f042}”这样的UTF-8,我只会在菜单中显示“有线”字符

    var shareAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "test" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in      

        self.presentViewController(shareMenu, animated: true, completion: nil)
    })

    shareAction.backgroundColor = UIColor(patternImage: UIImage(named: "obo_29.png")!)

到目前为止,我所做的是使用backgroundImage(模式)。但那不够灵活。而且我不想使用类似MCSwipe的lib ...(因为iOS8中的新功能)

0 个答案:

没有答案