[Error]Presenting action sheet clipped by its superview.

2013. 6. 18. 11:50제2외국어/에러일지.

UIActionSheet 사용 중, 생성할 뜨는 Log-Warnning


Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:]


처음 사용 소스 : [showActionSheet showInView:self.view]; 

1차 수정 소스 : [showActionSheet showInView:self.parentViewController.view];

: 처음 사용할 때 같은 Log가 찍혀서 1차 수정으로 잘 하였지만, 
ViewController -> 
UINavigationViewController 바뀔 때 같은 Log가 발생, 2차 수정한 소스로 해결


2차 수정 소스 :  [showActionSheet showInView:[UIApplication sharedApplication].keyWindow];





참고 : stackoverflow