How to Use Cursor to Build Swift Code (or Along with Xcode)
Question
I’m playing with Cursor for the first time (so far awesome!). My intent is to write Swift to build an app on macOS. At this moment, I still rely on the build function in Xcode, so I have both editors open and use Cursor only for chatting on top of the code base. However, I am afraid to hit “apply suggestions” and save.
- Can I somehow build my Swift app without Xcode, ideally in Cursor?
- If not, is it safe to save in one editor (Cursor) and continue in another (Xcode)? I use Git for versioning as well, so I don’t want to mess it up.
Thanks a bunch!
Answers
1. Response by aiJay
I came here wondering the same, and you have the only thread with no replies. My findings are still no, you are going to be copying from Cursor and pasting into Xcode. It works fine for smaller projects but would be awesome to have some easier way to integrate.
For those wondering, I have found Apple’s GenAI for Xcode to be useless so far.
2. Response by hamza
I came here wondering the same thing, but I haven’t found a way yet.
3. Response by tomas
I’ve tried a few things and found some answers to my questions:
-
Yes, you can build via a terminal command:
cd path/to/your/ProjectName
xcodebuild -project MyApp.xcodeproj -scheme MyApp -configuration DebugHowever, I’m wondering if there’s a way or a plugin to avoid using the terminal?
-
Yes, it seems safe—the changes are promoted instantly. I still prefer to save in Xcode, though.
Note: Check out the extension marketplace in Cursor—I just discovered that you can get plugins like
sswg.swift-lang
(Swift Language Support), etc.
4. Response by sampsonatx
Also wondering the same.
5. Response by Yvette
Same concern here! Any one successfully build an iOS app on Cursor?
6. Response by thangpham
I came here for the same reasons. Do we have any planned features for Xcode?
7. Response by drstarson
Building with Cursor / VSCode is possible but the setup is a bit tricky.
But using Cursor & VSCode concurrently actually works really well. Here is my workflow:
- Create a project in Xcode.
- Open it in Cursor.
- Index it in Cursor (top right corner there is a gears button and you can find indexing there).
- Do your edits in Cursor leveraging Cursor Compose or chat. Apply/save changes.
- Refresh Xcode and the changes will be picked up.
The key points to remember are: (a) make sure the code is indexed in Cursor and (b) refresh both Cursor and Xcode as needed to make sure files are in sync.
8. Response by rudrankriyam
Thanks for the mention of my blog post @drstarson. I have created a separate tag and wrote a few more posts working with Cursor: https://www.rudrank.com/tag/cursor/
I will continue documenting my experiments so we can make the most out of Cursor as an iOS developer!
9. Response by witchaudio
This hot reloading tool might be helpful too. It allows you to build via terminal directly to the simulator in Cursor. GitHub - krzysztofzablocki/Inject: Hot Reloading for Swift applications!
10. Response by deanrie
This video could be interesting.
11. Response by rudrankriyam
Indeed! A lot of golden nuggets in that video that I plan to write down!