provideplatform / provide-ios

Native iOS example application leveraging the provide-swift API client
0 stars 0 forks source link

Replace `init?(coder aDecoder: NSCoder)` usages with `awakeFromNib` #26

Closed jawwad closed 6 years ago

jawwad commented 6 years ago

Since we don't manually initialize ViewControllers, and they are all initialized from the storyboard we don't need to implement init?(coder aDecoder: NSCoder) (which is normally required if init is overridden). We should be able to replace these calls with the simpler awakeFromNib method.