|
@@ -5,7 +5,6 @@ class MessageInfoViewController: UITableViewController {
|
|
|
|
|
|
init(message: DCMessage) {
|
|
init(message: DCMessage) {
|
|
self.message = message
|
|
self.message = message
|
|
-
|
|
|
|
super.init(style: .plain)
|
|
super.init(style: .plain)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -16,23 +15,16 @@ class MessageInfoViewController: UITableViewController {
|
|
override func viewDidLoad() {
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
super.viewDidLoad()
|
|
title = String.localized("menu_message_details")
|
|
title = String.localized("menu_message_details")
|
|
- // Uncomment the following line to preserve selection between presentations
|
|
|
|
- // self.clearsSelectionOnViewWillAppear = false
|
|
|
|
-
|
|
|
|
- // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
|
|
|
|
- // self.navigationItem.rightBarButtonItem = self.editButtonItem
|
|
|
|
}
|
|
}
|
|
|
|
|
|
// MARK: - Table view data source
|
|
// MARK: - Table view data source
|
|
|
|
|
|
override func numberOfSections(in _: UITableView) -> Int {
|
|
override func numberOfSections(in _: UITableView) -> Int {
|
|
- // #warning Incomplete implementation, return the number of sections
|
|
|
|
return 1
|
|
return 1
|
|
}
|
|
}
|
|
|
|
|
|
- override func tableView(_: UITableView, numberOfRowsInSection _: Int) -> Int {
|
|
|
|
- // #warning Incomplete implementation, return the number of rows
|
|
|
|
- return 1
|
|
|
|
|
|
+ override func tableView(_: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
|
|
+ return 1 // number of rows in section
|
|
}
|
|
}
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
|
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
|
@@ -51,49 +43,4 @@ class MessageInfoViewController: UITableViewController {
|
|
|
|
|
|
return cell
|
|
return cell
|
|
}
|
|
}
|
|
-
|
|
|
|
- /*
|
|
|
|
- // Override to support conditional editing of the table view.
|
|
|
|
- override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
|
|
|
|
- // Return false if you do not want the specified item to be editable.
|
|
|
|
- return true
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
-
|
|
|
|
- /*
|
|
|
|
- // Override to support editing the table view.
|
|
|
|
- override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
|
|
|
|
- if editingStyle == .delete {
|
|
|
|
- // Delete the row from the data source
|
|
|
|
- tableView.deleteRows(at: [indexPath], with: .fade)
|
|
|
|
- } else if editingStyle == .insert {
|
|
|
|
- // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
-
|
|
|
|
- /*
|
|
|
|
- // Override to support rearranging the table view.
|
|
|
|
- override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) {
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
-
|
|
|
|
- /*
|
|
|
|
- // Override to support conditional rearranging of the table view.
|
|
|
|
- override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
|
|
|
|
- // Return false if you do not want the item to be re-orderable.
|
|
|
|
- return true
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
-
|
|
|
|
- /*
|
|
|
|
- // MARK: - Navigation
|
|
|
|
-
|
|
|
|
- // In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
|
|
- override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
|
|
- // Get the new view controller using segue.destination.
|
|
|
|
- // Pass the selected object to the new view controller.
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
}
|
|
}
|