我刚刚将这个pod添加到我的项目中:
并在终端中运行pod install
,看起来也不错。
Charless-MBP:BloQuery charleswesleycho$ pod install
Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Using IPInsetLabel (1.3.0)
Generating Pods project
Integrating client project
Sending stats
我也在使用.xcworkspace
但是当我尝试使用这个pod应该给Xcode抱怨的新功能时:
即使我确实导入了课程,Xcode
甚至在我输入时自动完成。有关为什么我的吊舱没有连接的任何想法?
答案 0 :(得分:1)
问题是self.questionTextLabel
的类型是UILabel
。但是,UILabel
没有insets
和verticalTextAlignment
等属性。这些是IPInsetLabel
添加的属性。
因此,一旦您创建self.questionTextLabel
类型的IPInsetLabel
,您就可以访问这些属性。