Adding Extensible UIs to an Existing App

To make only certain parts of your app extensible; for example, you can add a metadata-driven tile as a subview to a manually programmed UIViewController, or insert it into the navigation chain.

Retrieve the tile using MAFUIManager tileByIdentifier:
MAFTile* tile = [[MAFUIManager sharedInstance] tileByIdentifier:@"SalesOrders"];
You can use the tile in the same way as the UIViewController: push it to the navigation chain, display it modally, retrieve its subviews, and so on. For example, you can push the tile that has been retrieved by the above code snippet into the navigation stack using:
[self.navigationController pushViewController:tile animated:YES];