반응형
//헤더에 추가
<UIActionSheetDelegate>
//아래 팝업 메뉴 버튼 인덱스
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
printf("User Pressed Button %d\n", buttonIndex + 1);
if(buttonIndex == 0)
{
}
else if(buttonIndex == 1)
{
}
[actionSheet release];
}
//아래 팝업 띄움
//헤더에 추가 - (IBAction) showSheet;
- (IBAction) showSheet
{
UIActionSheet *menu = [[UIActionSheet alloc]
initWithTitle: nil //@"타이틀"
delegate:self
cancelButtonTitle:@"취소"
destructiveButtonTitle: nil//@"빨간색 표시"
otherButtonTitles:@"사진 촬영", @"사진 선택", nil];
// [menu showInView:self.view];
[menu showInView:self];
}
반응형
'보물창고 > Programming' 카테고리의 다른 글
request 헤더 정보 출력 jsp (accept, accept-language, cache-control, accept-encoding,user-agent, host, connection, cookie) (0) | 2011.03.30 |
---|---|
jsp request 객체 클라이 언트 정보 출력 (리퀘스트 서버 정보 출력 , 클라이언트 ip, 요청 url, 서버이름, 서버 포트, 프로토콜 타입, 인코딩, 전송 방식) (0) | 2011.03.30 |
자바 예외 처리 java Exception (0) | 2011.03.16 |
ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2 (0) | 2011.03.16 |
error C2533: 'Sum::{ctor}' : 생성자에서 반환 형식을 사용할 수 없습니다. (0) | 2011.03.06 |
'cout' : 선언되지 않은 식별자입니다. (0) | 2011.03.02 |
아이폰 디바이스 실행시 Could not load NIB in bundle에러가 났다면... (0) | 2011.01.19 |
아이폰 디바이스 테스트시 에러(dns.so , libXcodeDebuggerSupport.dylib) (0) | 2011.01.19 |