UIButton
ビューを閉じるポップアップビューを作成しました。ボタンを押すたびに、プログラムは次のメッセージで終了します: [MTPopupWindow performSelector:withObject:withObject:]: message sent to deallocated instance 0x84675f0
Here is the header file and source file to use the class I use this line of code:
[MTPopupWindow showWindowWithContent:@"Some text here" insideView:self.view];
オブジェクトの割り当て解除が早すぎることに何か問題があると思いましたが、使用しARC
ているので、この問題の原因はわかりません。問題は次のコード行にあると思います。
[self.closeBtn addTarget:self action:@selector(closePopupWindow) forControlEvents:UIControlEventTouchUpInside];
しかし、私はこれに問題はないと思います。