Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つの UIView クラスでプロトコルを宣言しています。 別の UIView クラスでプロトコル メソッドを実装したいと考えています。しかし、プロトコルメソッドは何ができるかを呼び出しません。誰でも助けて
UploadView でデリゲート関数を呼び出しましたか? また、オプションの関数であるため、関数を呼び出す前にデリゲートが関数に応答するかどうかを確認する必要があります。
- (void)yourFunction { ... if ([self.delegate respondsToSelector:@selector(takeAnotherPhoto:)]) { [delegate takeAnotherPhoto:self]; } ... }