Post

Replies

Boosts

Views

Activity

Comment on cannot find type in scope xcode 13
I get the same question, and I have tried restarting Xcode or restarting your Mac, but it's an error.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Comment on Showing All Issues Command failed due to signal: Abort trap: 6
I've got the same issue. My mistake was in the syntax of the code. e.g.:guard let cell = cell as? FWTableViewCell else return { cell }. The key point of the mistake is 'guard let cell = cell '. Fix: guard let tempCell = cell as? FWTableViewCell else return { cell }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’21