Member-only story
Cursor AI and iOS App 2
Coding my second iOS application with Cursor AI…
There are numerous videos on YouTube and articles here on Medium about how this setup works, so my article is not going to be a full tutorial. Instead, I will write about my experience and a few takeaways.
For my second iOS application I wanted to build using the Cursor AI IDE, I wanted to build a simple stock tracking bot. In my initial Composer prompt I gave it a few requirements. These bullet points are a little more concise for this article.
- Use the Alpha Advantage API to fetch the stock price.
- A field to provide a single stock ticker symbol.
- A field to provide a starting price to compare the real-time price against.
- A field to provide a desired percentage of change to compare against the calculated one in the application.
- A switch to turn to active monitoring on and off.
- Send the user a notification on the iOS device when the calculated percentage change is greater than the desired, whether up or down.
- When the monitoring is enabled, in a background thread fetch the current stock price every 5 minutes.
When I made my list of requirements, I started by putting them in a text file. I had a few starting sentences to tell the AI what kind of application I wanted to build. After those sentences I had a bulleted list of items like above to tell the AI in more detail each requirement I had.
So this is the application I got after the initial prompt and accepting the changes and saving them into my application.

There are not labels for the 3 fields in the Stock Information section. They are the following…
- Stock Symbol
- Starting Price
- Desired Change Percentage
When the application launches, it correctly displays a prompt message to the user on iOS that the application requires notifications. After the UI displays, you see the monitoring switch is turned off. I entered the desired values for the…