2017年2月10日 星期五

iOS BLE使用SWIFT#3

新增framework
https://dotblogs.com.tw/clark/2015/11/13/153918

[XCODE]ViewController基本應用 - 點選換畫面(ViewController > ViewController)

http://nigeljucodefarmercooltw.blogspot.tw/2015/06/xcodeviewcontroller-viewcontroller.html

swift不需要.m了,因此我們在VC.swift裡面新增

    @IBAction func close(segue:UIStoryboardSegue){
        
    }

就可以了


- 無法將table view controller與code關聯起來
要選到對應的storyboard區域才可以選對應的custom class(BLEScanTableViewCell)

- initializer for conditional binding must have optional type
發問至 stackoverflow 
http://stackoverflow.com/questions/42151095/initializer-for-conditional-binding-must-have-optional-type

guard類似於if 或者是exception

-Table view controller 參考官網教學
https://developer.apple.com/library/content/referencelibrary/GettingStarted/DevelopiOSAppsSwift/CreateATableView.html

- Int to String
        let x : Int = member.rssi
        let myString = String(x)

http://www.cnblogs.com/lovecode/archive/2011/12/02/2272764.html
http://blog.changyy.org/2013/12/ios-terminating-app-due-to-uncaught.html

記得要在identify裡面輸入相對應的label
例如  let cellIdentifier = "BLEScanTableViewCell"

-模擬器視窗大小
command + 1~6


沒有留言:

張貼留言