Chat view controller with basic functionality and simplicity.
Only displaying text chats, plain UI :D
WIP
Copy RCV.storyboard
and RCV.swift
to your project manually.
Then, write this code to use this view controller on your source code:
let storyboard = UIStoryboard(name: "RCV", bundle: nil)
let cvc = storyboard.instantiateInitialViewController() as! RCVViewController
self.navigationController?.pushViewController(cvc, animated: true)
// -- OR -- //
self.present(viewControllerToPresent: cvc, animated: true, completion: nil)
- improve UI & functionality
- making dynamic framework (cocoapods)
- keyboard handling
- ... and more