FeaturedViewController
class FeaturedViewController : UIViewController, UITableViewDelegate, UITableViewDataSource, UIScrollViewDelegate
This is a view controller used to control the feature page
-
This is a
UItableView
which is used to displayContent
s as cellsDeclaration
Swift
@IBOutlet var tableView: UITableView!
-
This is the offset of the last Content used to determine the scroll action
Declaration
Swift
var lastContentOffset: CGFloat
-
This is a controller to control the refresh
Declaration
Swift
var refreshControl: UIRefreshControl
-
Customise
TableView
Declaration
Swift
func customisation()
-
Refresh the page, when a notification is being sent with value refresh
Declaration
Swift
@objc func refresh(sender _: Any)
-
Tells the list of
Content
s to return the number of rows in a given section of a table view.Declaration
Swift
func tableView(_: UITableView, numberOfRowsInSection _: Int) -> Int
Parameters
tableView
The table-view object requesting this information.
indexPath
An index number identifying a section in tableView.
Return Value
The number of rows in section.
-
Asks the list of
Centent
for a cell to insert in a particular location of the table view.Declaration
Swift
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
Parameters
tableView
A table-view object requesting the cell.
indexPath
An index path locating a row in tableView.
Return Value
An object inheriting from
UITableViewCel
l that the table view can use for the specified row.UIKit
raises an assertion if you return nil. -
Tells the delegate that the specified row is now selected. And send open notification
Declaration
Swift
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
Parameters
tableView
A table-view object informing the delegate about the new row selection.
indexPath
An index path locating the new selected row in tableView.
-
Called after the controller's view is loaded into memory. Load
customisation
methodDeclaration
Swift
override func viewDidLoad()