.h ファイル:
@interface WibraryViewController : UIViewController <UIAlertViewDelegate> {
IBOutlet UIActivityIndicatorView *activityIndicatorView;
}
+ (void) notifyServerOfFileOpening:(NSString *) docName;
.m メソッド:
+ (void) notifyServerOfFileOpening:(NSString *) docName
{
NSLog(@"doc opened name = %@", docName);
}
「セレクターの既知のクラスメソッドがありません」エラーを生成する別のクラスの行:
[WibraryViewController notifyServerOfFileOpening];
これは、UIAlertViewDelegate デリゲートが使用されているという事実と関係があるのではないかと推測していますが、デリゲートがどのように機能するかはまだよくわかりません。もちろん、それはまったく異なるものである可能性もあります。
誰かが問題を指摘してくれることを望んでいましたか?ありがとう。