2016-07-24 6 views

答えて

0

ヘッダファイルがwatchOSテーブルで使用可能なオプションを提供し、そこに何もない行が表示されているかどうかを確認するには、これはあなたが希望の重要な機能である場合にはレーダーファイル:

@available(watchOS 2.0, *) 
public class WKInterfaceTable : WKInterfaceObject { 


public func setRowTypes(_ rowTypes: [String]) // row names. size of array is number of rows 

public func setNumberOfRows(_ numberOfRows: Int, withRowType rowType: String) // repeating row name 


public var numberOfRows: Int { get } 

public func rowController(at index: Int) -> AnyObject? 


public func insertRows(at rows: IndexSet, withRowType rowType: String) 

public func removeRows(at rows: IndexSet) 


public func scrollToRow(at index: Int) 


@available(watchOS 3.0, *) 
public func performSegue(forRow row: Int) 
} 
関連する問題