[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
'제2외국어 > 에러일지.' 카테고리의 다른 글
Windows에서 삼바, 네트워크 스토리지 refresh 문제 (1) | 2016.05.19 |
---|---|
같은 모양, 다른 값의 한글 자음 (2) | 2013.07.05 |
[error]-[NSPlaceholderString initWithString:]: nil argument' (1) | 2013.05.28 |
[Error]500 OOPS: cannot change directory:/home/*** 문제시. (0) | 2013.05.09 |
[error] error: failed to attach to process ID ~~ (3) | 2013.01.04 |