| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // MyAlertViewController.swift
- // SocketChat
- //
- // Created by Justine on 16/6/1.
- // Copyright © 2016年 AppCoda. All rights reserved.
- //
- import UIKit
- class MyAlertViewController: UIAlertController {
- override func viewDidLoad() {
- super.viewDidLoad()
-
- // Do any additional setup after loading the view.
- }
- 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.
- }
- */
- }
|