일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- udp
- UIWebView
- 톰켓
- HTML
- permgen space
- Android
- ios
- encoding
- Objective C
- java
- WebView
- spring
- jsp
- 티스토리 초대장
- MySQL
- ipad
- JavaScript
- C#
- Database
- Eclipse
- iphone
- 이클립스
- XML
- 티스토리 초대
- 한글
- Tomcat
- Memory
- 인코딩
- 메모리
- jQuery
- Today
- Total
목록2011/07/27 (2)
suroMind
from xguru in twitter https://github.com/digdog/DDActionHeaderView http://code.google.com/p/oauthconsumner/ http://code.google.com/p/mpoauthconnection/ http://getsharekit.com/ http://code.google.com/p/nate-ios-client-api/ https://github.com/facebook/facebook-ios-sdk http://code.google.com/p/cocoaasyncsocket/ https://github.com/enormego/cocoa-helpers https://github.com/woohj70/iPhotoDiary https:/..
간단하게 기본 actionsheet를 사용하지 않고 view를 추가해서 사용하는 방법입니다. 헤더파일에 UIActionSheet *actionSheet; UIView *viewActionSheet; 두개를 추가하고.. view는 아울렛으로 연결하시던지 하시면 됩니다. 특정 버튼을 눌러서 actionSheet를 띄울 코드 UIActionSheet *tempActionSheet = [[[UIActionSheet alloc] init] autorelease]; tempActionSheet.delegate = self; [tempActionSheet addSubview:self.viewActionSheet]; // 액션시트에 뷰 추가 [tempActionSheet showInView:self.view]; // ..