내가 클릭 버튼에 경고 팝업을 개방하고 창 아무 곳이나 눌러 때좋은 코드를 작동하고
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"PopUP Title"
message:@"This is pop up window/ Alert"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
UIImageView *tempImageView=[[UIImageView alloc]initWithFrame:CGRectMake(20,20,50,50)];
tempImageView.image=[UIImage imageNamed:@"abc.png"];
[alert addSubView:tempImageView]
[alert show];
경고 상자가 확인 버튼의 클릭에 폐쇄되어있는 UIAlertView를 dimiss하는 방법, 난 그것을 원하지 않아, 나는 창문 어디서나 클릭하면 경고창을 뜨고 싶다. 도와주세요.