Post

Replies

Boosts

Views

Activity

Reply to UIKit Autocomplete Broken in Xcode 15.0.1 Playgrounds
Hello, Try to delete the Derived Data folder. Xcode > Settings > Locations > Derived Data > Click the arrow to open in Finder > Trash it. Or create a shell script and run it # 1 echo "Removing Derived Data..." rm -rf ~/Library/Developer/Xcode/DerivedData/ # 2 echo "Removing Device Support..." rm -rf ~/Library/Developer/Xcode/iOS\ DeviceSupport rm -rf ~/Library/Developer/Xcode/watchOS\ DeviceSupport rm -rf ~/Library/Developer/Xcode/tvOS\ DeviceSupport # 3 echo "Removing old simulators..." xcrun simctl delete unavailable # 4 echo "Removing caches..." rm -rf ~/Library/Caches/com.apple.dt.Xcode rm -rf ~/Library/Caches/org.carthage.CarthageKit # 5 if command -v pod &> /dev/null then # 6 pod cache clean --all fi echo "Done!"
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’23
Reply to can't run app in physical device, Xcode 12.5, iOS 12.5.3
Turns out it is one scheme setting that leads to this error: Debug Executable Steps: Choose the problematic scheme Edit Scheme Choose Run Uncheck “Debug executable” Clean Derived Data: ⌘ Cmd + ↑ Shift + K Run the app again: ⌘ Cmd + R
Replies
Boosts
Views
Activity
Jun ’21
Reply to UIKit Autocomplete Broken in Xcode 15.0.1 Playgrounds
Hello, Try to delete the Derived Data folder. Xcode > Settings > Locations > Derived Data > Click the arrow to open in Finder > Trash it. Or create a shell script and run it # 1 echo "Removing Derived Data..." rm -rf ~/Library/Developer/Xcode/DerivedData/ # 2 echo "Removing Device Support..." rm -rf ~/Library/Developer/Xcode/iOS\ DeviceSupport rm -rf ~/Library/Developer/Xcode/watchOS\ DeviceSupport rm -rf ~/Library/Developer/Xcode/tvOS\ DeviceSupport # 3 echo "Removing old simulators..." xcrun simctl delete unavailable # 4 echo "Removing caches..." rm -rf ~/Library/Caches/com.apple.dt.Xcode rm -rf ~/Library/Caches/org.carthage.CarthageKit # 5 if command -v pod &> /dev/null then # 6 pod cache clean --all fi echo "Done!"
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to ios 17 reboot after installed app from xcode 15
Dıd you try Factory reset your iPhone? Go to Settings > General > Transfer or Reset iPhone. Tap Erase All Content and Settings to initiate the process.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Xcode 15.0 using macOS 10.14 SDK as Base SDK
Did you check this post? SDK Path wrong - https://developer.apple.com/forums/thread/77935
Replies
Boosts
Views
Activity
Oct ’23
Reply to Error during archive
Hello, Did you use CocoaPods, Carthage, or SPM? How did you install Google Library on your project? Please give more information
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’23