我试图在我的项目中包含一个新库,但是我相信我错误地将库添加到项目中,因为我仍然会收到无法找到包的错误。
我认为原因是我实际上没有在我的项目中添加Jar,因为源文件JWT缺少一个。
使用Netbeans 8.1,我试图包含JWT的应用程序是一个普通的Java Web应用程序。
答案 0 :(得分:1)
maven依赖关系是在介绍页面本身上给出的
class MyViewController: UIViewController {
var buttonLabel:String
var buttonRadius:CGFloat = 90
var button = UIButton.buttonWithType(UIButtonType.System) as UIButton
init(buttonColour:CGColorRef, buttonLabel:String){
self.buttonColour = buttonColour
self.buttonLabel = buttonLabel
}
func drawButton() {
button.frame = 100, 100, buttonRadius * 2, buttonRadius * 2)
button.layer.borderColor = buttonColour
button.setTitle(buttonLabel, forState: UIControlState.Normal)
button.addTarget(self, action: "pressed:", forControlEvents: UIControlEvents.TouchUpInside)
self.view.addSubview(button)
}
}
UPDATE -
在这种情况下使用