2016-07-24 22 views

Antwort

0

Die Header-Datei für watchOS Tabellen verfügbare Optionen bietet, gibt es nichts zu überprüfen, ob eine Zeile sichtbar ist, ein Radar-Datei, wenn dies ein wichtiges Merkmal ist, würden Sie mögen:

@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) 
}