This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TableViewController: UITableViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
tableView.delegate = self | |
tableView.dataSource = self | |
navigationItem.rightBarButtonItem = editButtonItem | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) kayoslabs - All Rights Reserved | |
* Description from Jan Philip Matuschek | |
* (http://janmatuschek.de/LatitudeLongitudeBoundingCoordinates) | |
* Written by kayoslabs, March 2017 | |
*/ | |
import Foundation | |
import MapKit |
NewerOlder