在其他ViewController中添加/删除数组中的用户,可以通过以下步骤实现:
这样,就可以在其他ViewController中添加/删除目标ViewController数组中的用户了。
以下是一个示例代码:
// 目标ViewController
class TargetViewController: UIViewController {
var usersArray: NSMutableArray = NSMutableArray()
// 添加用户到数组中
func addUser(user: User) {
usersArray.add(user)
}
// 从数组中删除用户
func removeUser(user: User) {
usersArray.remove(user)
}
}
// 其他的ViewController
class OtherViewController: UIViewController {
var targetVC: TargetViewController = TargetViewController()
// 添加用户到目标ViewController的数组中
func addUserToTargetVC(user: User) {
targetVC.addUser(user: user)
}
// 从目标ViewController的数组中删除用户
func removeUserFromTargetVC(user: User) {
targetVC.removeUser(user: user)
}
}
这样,你就可以在其他的ViewController中通过调用addUserToTargetVC和removeUserFromTargetVC方法来添加/删除目标ViewController数组中的用户了。
请注意,以上示例代码仅为演示目的,实际实现可能会根据具体的开发环境和需求有所不同。
领取专属 10元无门槛券
手把手带您无忧上云