Posts

Post not yet marked as solved
22 Replies
That displays the same thing that i already have. Is it possible for me to drop the public link to test flight the app so you can see what it looks like?
Post not yet marked as solved
22 Replies
So the image is showing perfectly with the code i have, my issue is that it is showing the same image in every cell on the tests, instead of the different image per cell, as configured in the IB. so i guess my problem would be getting cells 2, 3, 4, 5, and 6 to show their images instead of all the cells have the image of cell 1. Also, i did change the code to the one you suggested and it is NOT what im wanting lol, It takes away the cell background color
Post not yet marked as solved
10 Replies
makes sense, haha. Glad i could help you out 🙂
Post not yet marked as solved
22 Replies
so thats my SecondViewController code, the image is connected to the FirstCollectionViewCell code, which is attached to the first cell:import UIKit class FirstCollectionViewCell: UICollectionViewCell { @IBOutlet weak var Movie1: UIImageView! override func awakeFromNib() { super.awakeFromNib() } }UPDATE! I wasw able to get the cell sizes to show correctly. Now my only trouble is getting all of the different images/cells to show up in their specified spots
Post not yet marked as solved
10 Replies
yes it is. It's easier if you install the profiles on the devices from the safari browser
Post not yet marked as solved
22 Replies
IB. but i also have 6 cells, each with a different image in it. its showing 6 cells in 2 columns, exactly like i want it to, but its all the same cell, just repeated, and very small
Post not yet marked as solved
22 Replies
alright, after waiting for Apple to release an update so i could actually open my app, i finally got something to show up from the collection view. The only problem that im having is the size of the cell, and im unsure of how to get the other cells to show up. here's my working code:import UIKit class SecondViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate { func numberOfSections(in collectionView: UICollectionView) -> Int { return 1 } func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return 1 } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Movie1", for: indexPath) return cell } override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } }
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
I figured out that it ended up being a MacOS Catalina Beta 3 issue. Problem was fixed for me once updating my mac 🙂
Post marked as solved
84 Replies
same issue here. iPhone X and Apple Watch Ceramic Edition Series 2
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
So I can confirm that it is the string of beta 3’s: iOS and iPadOS 13 beta 3, macOS Catalina beta 3, and Xcode 11 beta 3, that seem to be having issues. I updated another one of my phones to iOS 12.4 beta 6, and installed my app through TestFlight and it works beautifully, but when I try to run the app via Xcode with any of my devices, running iOS 12.4 or iOS 13, it just says “iPhone denied the launch request”. It’s making it really hard to develop my app right now, but I’m hoping Apple releases a fix soon
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
I have mine in testflight, and it won’t open with the beta 3. And with the Xcode install, it won’t open it either. Really annoying, in all honesty
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
i was able to open and use the Delta app with ios 13 developer beta 2, but i havent tried it with developer beta 3 yet. I am updating to the re-released beta 3 right now. I will try it once my phone finishes updating. UPDATE: the delta app works just fine for me in developer beta 3
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
it does appear that apple has re-released ios 13 developer beta 3, im updating to it right now. I will report back with whether or not im able to open my app after the update. UPDATE: my app still will not open, it just crashes on launch :(
Post marked as solved
18 Replies
Replied In iOS 13 beta 3
yea it wont open with my. phone plugged into xcode, or even in the simulator. And i also know that it isnt the build of my app because it ran beautifully before upgrading ios 13 beta 3. I have a feeling that MacOS Catalina Beta. 3 could also have a bug that isnt allowing xcode to open the app in the simulator, because i wasnt experiencing issues with it until catalina beta 3
Post not yet marked as solved
22 Replies
im receiving numerous errors after typing in the code, specifically in the lines:var items : String = []"cannot convert valueof type '[any]' to specified type 'String'collectionView.delegate = self collectionView.dataSource = selfboth receive the error: Ambiguous reference to member 'collectionView(_:numberOfItemsInSection:)'let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CollectionCellID", for: indexPath) as! FirstCollectionViewCell cell.label.text = items[indexPath.row]and for those 2 lines it's the error: subscript(_:)' is unavailable: cannot subscript String with an Int, see the documentation comment for discussion