A tile is a UI element that has a visual representation on an iPhone or an iPad screen. It can be an entire screen, a composite tile, or a simple view element.
<?xml version="1.0" encoding="UTF-8"?>
<MAF xmlns="http://schemas.sap.com/maf/2012/cfg">
    <!-- Define a TileContainer (Container View Controller)
     * Here we define a navigation based container (translates to UINavigationController)
     * Currently possible values are "nav", "tab" (UITabBarcontroller) and "split" 
     * (UISplitViewController / iPad)
     -->
    <TileContainer tileContainerId="NavigationContainer" type="nav">
        <P pid="isRoot" value="true"/>
        <TileRef ref=" LeaveRequestScreen"/>
    </TileContainer>
    
   <Tile tileId="LeaveRequestScreen">
<P pid=” title” value="{$_i18n.leaveoverview}"/>
<P pid=” imageSrc” value="MAFExtensibilityImages.bundle/General-Leave.png">   	<!—A linear container arranges the tiles and UI elements declared in its scope -->
<LinearContainer layout=”vertical”>
   		<Tile ref="LeaveRequestList"/>
   		 <!—Further tiles and UI elements skipped for brevity -->
</LinearContainer>
   </Tile>
   <Tile tileId="LeaveRequestList">
<P pid=” title” value="{$_i18n.leavelist}"/>
   	 <!—Further details skipped for brevity -->
   </Tile>
</MAF>