Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Basics An Introduction to Swift Programming An Introduction to Xcode

Yucheng Huo
Yucheng Huo
2,210 Points

How do I get rid of the suggestions pop up in Xcode when I type everytime.

When I type in Xcode and it automatically hows many things for me and I don't want those to pop up. Can someone help me with it?

1 Answer

Matthew Long
Matthew Long
28,407 Points

You will learn to LOVE those "pop ups", or code completion suggestions. That is the compiler predicting what you are trying to write. This will also prevent errors in code by making it difficult to misspell properties, etc. Any IDE without a feature like this is not a very good IDE. Same can be said for text editors in my opinion.

With that said, you can disable many of the code completion settings in preferences under text editing. Again, I highly suggest you don't disable it.

Lastly, if this is not what you're referring to as "pop ups" then I'm going to need more to go on.

Yucheng Huo
Yucheng Huo
2,210 Points

Thank you! The reason I wanted to change that was when I assigned a variable number, and next line, I typed number, and it pops up other options rather than to use the string. Now I will keep it.