一,之前在使用TTTAttributedLabel姆吭,發(fā)現(xiàn)它不能在xib使用,直接使用的話就會報下面的錯誤。
關于這個問題的解決方法stackoverflow上有:
http://stackoverflow.com/questions/28204108/ib-designables-failed-to-update-auto-layout-status-failed-to-load-designables
1刊懈,第一種是用cocoapods導入的時候在podfile 中加上 use_frameworks!,
然后 pod update一下 在打開項目 clean一下 就OK了.2, 第二種是寫個子類繼承自 TTTAttributedLabel娃闲,然后在.h文件中加上這些代碼
#ifndef IB_DESIGNABLE
#define IB_DESIGNABLE
#endif
@class TTTAttributedLabel;
IB_DESIGNABLE @interface YourLabel : TTTAttributedLabel {
...
}
這兩種方法都能解決問題虚汛。