Watchkit problem with Table with big number of rows

Hi.
I have a problem when I create a table with WatchKit.
If my table has 300 rows works correctly but if I have a table with 1000 rows when I scroll I see lags. How can I solve this? I use swift language

This is an example

   @IBOutlet weak var myTable: WKInterfaceTable!
   
  override func awake(withContext context: Any?) {
    super.awake(withContext: context)
      self.myTable.setNumberOfRows(1000, withRowType: "Row")
    myTable.curvesAtTop = true
    myTable.curvesAtBottom = true
     
  }
Watchkit problem with Table with big number of rows
 
 
Q