當我點擊一個單元我想推這個視圖控制器。如何從UIView推視圖控制器
這裏是我的代碼:
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let user = filteredUsers[indexPath.item]
print(user.username)
let userProfileController = UserProfileController(collectionViewLayout: UICollectionViewFlowLayout())
}
我想推userProfileController
。
注:這是一個UIView
不是一個視圖控制器
你可以從該視圖和推視圖控制器。 https://stackoverflow.com/a/24590678/6642629 – koropok
你不能從視圖推動。 – Pushpendra
考慮爲擁有視圖的視圖控制器創建回調/委託,並從該位置推入下一個視圖控制器。 – user3581248