记 开发MIP IOS版本中遇到的坑
storyboard中使用 TTTattibutedLabel 及didSelectLinkWithURL没有调用问题storyboard中使用 TTTattibutedLabelGo to Storyboard and select the UILabel and change its class to TTTAttributedLabe关联代码1@property (weak, nonatomic) IBOutlet TTTAttributedLabel *tips;
增加链接123456789101112131415161718192021222324 self.tips.enabledTextCheckingTypes = NSTextCheckingTypeLink; self.tips.delegate = self; self.tips.font = [UIFont
...