0
我很新到iOS編程任何「衛生署」的問題很抱歉;)MWPhotoBrowser和TabBar應用在Xcode 4.2
我想用美妙的MWPhotoBrowser在我的應用程序。我正在使用TabBar應用程序,但我無法弄清楚如何在我的視圖中呈現照片瀏覽器。任何提示/想法/代碼片段?
任何幫助,非常感謝。由於
這是我在我viewDidLoad中的選項卡的視圖的視圖控制器:
// Browser
NSMutableArray *photos = [[NSMutableArray alloc] init];
self.photos = [NSMutableArray array];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"URL to 1.jpg"]]];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"URL to 2.jpg"]]];
self.photos = photos;
// Create & present browser
MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];
browser.displayActionButton = YES; // Show action button to save, copy or email photos
[browser setInitialPageIndex:1]; // Example: allows second image to be presented first
// Present
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:browser];
nc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:nc animated:YES];
我複製這從演示,但現在我在標籤欄視圖的正面有一個看法,多數民衆贊成,但我想要的是我的標籤欄內的照片視圖。我錯過了什麼/顯然做錯了?
請參閱我編輯的帖子。謝謝 – DanielR 2012-01-10 19:32:42