티스토리 뷰

프로토콜 적용 <UIActionSheetDelegate>

//액션시트 할당
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"My Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"OK" otherButtonTitles:@"Other1",@"Other2",nil];

//액션시트 띄우기
[actionSheet showInView:self.view];
//탭바 같은걸로 액션 시트 버튼이 안먹힐때
//[actionSheet showInView:[UIApplication sharedApplication].keyWindow];
//액션시트 해제
[actionSheet release];


-(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
{
if(buttonIndex != [actionSheet cancelButtonIndex])
{
//Cancel 이 아닐때
}
}


'나름 프로그래밍? > Objective-C' 카테고리의 다른 글

XCode 에서 생긴 My Error Solution  (1) 2010.03.16
경고창 띄우기  (0) 2010.03.02
아이폰 내부 경로  (0) 2010.03.02
post 방식 예제  (1) 2010.02.23
Xcode에서 SCM 설정하기  (0) 2010.02.22
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함