Two UITableView in the same view

前端 未结 6 802
Happy的楠姐
Happy的楠姐 2020-12-05 15:16

I want to know if it\'s allowed to use Multiple UItableView in the same View (i don\'t see any thing in the Apple\'s Human Interface Guidelines) and if it\'s OK

6条回答
  •  被撕碎了的回忆
    2020-12-05 15:40

    You can set tag for each table. Then apply on that condition in tableview delegate method, for example:

    myTable.tag=12;
    

提交回复
热议问题