mirror of
https://github.com/wahyd4/libr-ios.git
synced 2026-08-09 13:16:32 +10:00
42 lines
1.1 KiB
Swift
42 lines
1.1 KiB
Swift
//
|
|
// FeedBackViewController.swift
|
|
// librx
|
|
//
|
|
// Created by Yunlong Zheng on 15/11/9.
|
|
// Copyright © 2015年 librx. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class FeedBackViewController: UIViewController {
|
|
|
|
@IBOutlet weak var webView: UIWebView!
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
|
|
self.navigationController?.navigationBar.tintColor = UIColor.whiteColor()
|
|
self.webView.loadRequest(NSURLRequest(URL: NSURL(string:FeedBack.glodDataFormUrl)!))
|
|
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
/*
|
|
// MARK: - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
|
|
// Get the new view controller using segue.destinationViewController.
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
}
|