ブログにソースコードを載っけてみたいので、Crayon Syntax Highlighterプラグインを追加してみました。
ただ、Wordpressのプラグインページに載せてあるものではWordpressの内部エラーが出てしまうようで、Githubから最新版のzipをダウンロードし、それを使ってインストールしています。
試しに掲載したコードはこんな感じ。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import UIKit import MapKit import WebKit import CoreLocation class ViewController: UIViewController { @IBOutlet weak var mapView: MKMapView! @IBOutlet weak var webView: WKWebView! var locationManager: CLLocationManager! fileprivate func initializeLocationManager() { locationManager = CLLocationManager() } fileprivate func requestAuthorization() { locationManager.requestAlwaysAuthorization() } fileprivate func setupLocationManagerIfNeeded() { let status = CLLocationManager.authorizationStatus() if status == .authorizedWhenInUse || status == .authorizedAlways { locationManager.delegate = self locationManager.distanceFilter = 10 locationManager.startUpdatingLocation() } } override func viewDidLoad() { super.viewDidLoad() initializeLocationManager() requestAuthorization() setupLocationManagerIfNeeded() if let html = Bundle.main.path(forResource: "index", ofType: "html") { let url = URL(fileURLWithPath: html) let request = URLRequest(url: url) webView.scrollView.isScrollEnabled = false webView.load(request) } } } |
最近になってSwiftプログラミングに目覚めてしまいました。
いわゆるtipsみたいなのをまとめて置きたかったのですが、qiitaに載せるほどでもないし、自分のブログでなんとかできないものかと思っていたところにプラグインの存在を知ったので助かりました。