Open
Description
From @logicsb on January 30, 2016 20:35
Hi, the ASEditableTextNode component is eating emojis in the first line when using custom font styles
// style of the attributedText
class func feedPostCellContent () -> [String:AnyObject] { // Content
var style = [NSFontAttributeName: UIFont(name:"MyriadPro-Light", size:14.0)!, NSForegroundColorAttributeName: UIColor.blackColor()]
let paragraph = NSMutableParagraphStyle()
paragraph.lineSpacing = 8
style[NSParagraphStyleAttributeName] = paragraph
return style
}
Copied from original issue: facebookarchive/AsyncDisplayKit#1154