Post

Replies

Boosts

Views

Activity

Reply to Is there a way in Xcode to jump directly to edits that you made in a file, instead of having to scroll through to find them?
a way in Xcode to jump directly to edits that you made in a file What time frame ? Do you mean after closing the file and reopening ? do you mean the last changes you made in an edit session. There is the solution proposed above if you manage your versions in git. There are other simple ways (not so powerful): mark the changes in a comment as // 5.3.2021 Then searching through them is very easy. In an editing session, repeat undo to jump to the last changes until you find the one you want. But then you'll have to redo. So only useable to roll back a few changes.
Mar ’21
Reply to UIcollectionView with array no loading sections
Would need to test with complete code, to confirm. If you want to post an email for a short moment. But I would do setupViews() inside func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) - UICollectionViewCell { With present code, I suspect you do not set the labels of the cell you dequeue…
Topic: Programming Languages SubTopic: Swift Tags:
Mar ’21