pls help lesson 5 on the image thing #50
-
yes I have lots of errors cuz class fast and couldn't keep up plus slides very yes so ps help I add zip file yes thanks yes. don't mind the name |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Firstly, you have an error on line 96. To resolve this issue, go to line 12 and put extra delegates like UINavigationControllerDelegate and UIImagePickerControllerDelegate. Secondly, the reason why you only see a white screen is because in the Photos array, you don't have a single element inside which means no photos to display, so there will be 0 collection view cells displayed and hence there will be a white screen. |
Beta Was this translation helpful? Give feedback.
Firstly, you have an error on line 96. To resolve this issue, go to line 12 and put extra delegates like UINavigationControllerDelegate and UIImagePickerControllerDelegate.
class CollectionViewController: UICollectionViewController, UINavigationControllerDelegate, UIImagePickerControllerDelegate {
Secondly, the reason why you only see a white screen is because in the Photos array, you don't have a single element inside which means no photos to display, so there will be 0 collection view cells displayed and hence there will be a white screen.