- 해당 하는 파일 을 선택 한 후 Copy items into destination group's folder(if needed) 반드시 체크
- CoverFlow는 Frameworks중에서 QuartzCore.framework 와 CoreGraphics.framework 를 필요로 합니다. Frameworks 폴더 아래에 아래와 같이 추가 합니다. 프레임워크 추가시에는 Copy items into destination group's folder(if needed) 부분을 체크 하시면 안됩니다.
#import <UIKit/UIKit.h> #import "AFOpenFlowView.h"
@interface DmdCenterViewController : UIViewController <AFOpenFlowViewDelegate, AFOpenFlowViewDataSource>{
}
@end |
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad];
NSString *imageName; for (int i=0; i < 10; i++) { imageName = [[NSString alloc] initWithFormat:@"%d.jpg", i];
[(AFOpenFlowView *)self.view setImage:[UIImage imageNamed:imageName]forIndex:i]; [imageName release]; } [(AFOpenFlowView *)self.view setNumberOfImages:10];
|
7. 이제 실행을 해보시면 아래와같은 실행 모습을 보실 수 있을 것입니다.
8. 실행 화면이 멋집니다. 이걸 처음 부터 구현하신 분에게 감사 드립니다. 여기서 시뮬레이터를 좌 또는 우측으로 돌리면 커버플로우 화면이 돌아가야 하는데 현재 돌아 가지 않습니다. 아래의 코드를 CoverFlowViewController.m에 추가 하시면 됩니다.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations //return (interfaceOrientation == UIInterfaceOrientationPortrait); return YES;
|
'Develop > Objective-C' 카테고리의 다른 글
UILabel 세로 정렬하기 ( Vertical align ) (0) | 2011.07.14 |
---|---|
Twitter API 사용해서 JSON 으로 Search 하기 (0) | 2011.07.14 |
Objective-c 에서 java의 split 메소드 (0) | 2011.07.05 |
Command /usr/bin/codesign failed with exit code 1 에러가 두둥!! (0) | 2011.07.03 |
윈도우 cvs 서버와 맥의 xcode 연동방법 (0) | 2011.04.28 |
Objective-c 암호화관련 (0) | 2011.03.11 |
애플 리젝 사유 정리 - 계속 업데이트중.. (2) | 2011.02.07 |
multipart/form-data POST 방식으로 파일 업로드 하기 (0) | 2011.02.07 |