public override bool FinishedLaunching(UIApplication app, NSDictionary options) { window = new UIWindow(UIScreen.MainScreen.Bounds); layout = new UICollectionViewFlowLayout { ItemSize = new SizeF(100, 100) }; photosController = new PhotosViewController(layout); navController = new UINavigationController(photosController); window.RootViewController = navController; window.MakeKeyAndVisible(); return(true); }
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { window = new UIWindow (UIScreen.MainScreen.Bounds); layout = new UICollectionViewFlowLayout { ItemSize = new SizeF(100,100) }; photosController = new PhotosViewController (layout); navController = new UINavigationController (photosController); window.RootViewController = navController; window.MakeKeyAndVisible (); return true; }
public PhotoLibraryObserver(PhotosViewController controller) { this.controller = controller; }