Multiple sections in UITableView iOS Swift. UITableView is very important part of iOS ecosystem. So we split tableviews in sections. Then its easier to find right information. 1. First let’s create a project as usual. Create a new single view application X code project. Set project name to UIViewController. 2. Go to main storyboard & select view controller & use UITableView 3. Select tableview & make it initial view controller 4 Create a custom Sections Class like Name => TableSections, create register cell static return “ getCellNibs ” method. Then create 4 section enum “TableItems” then after append all sections to an array model. import UIKit struct CellNib { static func getCellNibs () -> [ String ] { return [ "Cell1" , "Cell2" , "Cell3" , "Cell4" ] } } enum TableItems : Int { case TableSections1 case TableSections2 case TableSections3 case TableSections4 } class TableSec
Mobile apps Development iOS (iphone ipad ) for objective and Swift programming