0

iPhoneアプリでUIGlassButtonを使用したいのですが、ViewControllerに次のコードがあります。

UIGlassButton *myButton = [[UIGlassButton alloc] initWithFrame:CGRectMake(2,2,316,50)];
[myButton addTarget:self action:@selector(myFunction:) forControlEvents:UIControlEventTouchDown];
[myButton setTitle:@"Neat button!" forState:UIControlStateNormal];
[myButton setTintColor:[UIColor colorWithWhite:0.20f alpha:1]];
[self.view addSubview:myButton];

ディレクティブ@classUIGlassButtonを追加しました。ビューコントローラのヘッダーファイルにありますが、次のエラーが発生します。

Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_UIGlassButton", referenced from:
   objc-class-ref in ControlViewController.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
4

1 に答える 1

1

UIGlassButton は Apple コンポーネントではありません。インポートする必要がある別のカスタム ライブラリに属している可能性があります。

于 2011-06-10T14:24:58.117 に答える