티스토리 뷰
프로토콜 적용 <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
{
//액션시트 할당
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 |