VMF_AttendanceViewController
class VMF_AttendanceViewController : VMF_BaseViewController, VMF_MasterTableControllerProtocol
This is the main view controller for the My Attendance Screen.
This is a very basic table display. It does not have any controls or filters.
-
This tracks the current embedded table controller.
Declaration
Swift
var tableDisplayController: VMF_EmbeddedTableControllerProtocol?
-
The meetings we are tracking.
Declaration
Swift
var meetings: [MeetingInstance] { get }
-
Called when the view hierarchy loads.
Declaration
Swift
override func viewDidLoad()
-
Called just before the view is to disappear.
Declaration
Swift
override func viewWillDisappear(_ inIsAnimated: Bool)
Parameters
inIsAnimated
True, if the disappearance is animated.
-
Called before populating the table
Declaration
Swift
override func prepare(for inSegue: UIStoryboardSegue, sender: Any?)
Parameters
for
The segue object being executed.
sender
Any associated data (ignored).