Я реализовал боковое меню в табличном представлении, и теперь мой сценарий выглядит так: мне нужно управлять параметрами бокового меню как типами пользователей
Позвольте мне показать мой код
var items = ["Social Media Post", "Messages", "Manage User","My Account","Information","Logout"]
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as! MenuTableViewCell
cell.lblTitle.text = items[indexPath.row]
cell.imgMenuLogo.image = image[indexPath.row]
print(User_type)
if User_type == 2{
items.remove(at: 0)
}
return cell
}
, но теперь я хочу,Мне нравится
if user_type == "3"{
// Social Media , Messages And Manage User options i want to remove
}
Я не могу понять, как удалить из индекса.