Xcode项目无法识别podfile属性

时间:2015-08-22 02:48:02

标签: ios objective-c xcode cocoapods

我刚刚将这个pod添加到我的项目中:

My Podfile

并在终端中运行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

Here they are, I am using the white one

但是当我尝试使用这个pod应该给Xcode抱怨的新功能时:

Why Xcode...  即使我确实导入了课程,Xcode甚至在我输入时自动完成。有关为什么我的吊舱没有连接的任何想法?

这是pod:https://github.com/control/IPInsetLabel

ITS IMPORTED!

1 个答案:

答案 0 :(得分:1)

问题是self.questionTextLabel的类型是UILabel。但是,UILabel没有insetsverticalTextAlignment等属性。这些是IPInsetLabel添加的属性。

因此,一旦您创建self.questionTextLabel类型的IPInsetLabel,您就可以访问这些属性。