Alex D
Alex D

Reputation: 739

MonoDevelop and XCode

I'm using MonoDevelop 2.8.5 and XCode 4.2.1. Every time I'm switching to monodevelop window from anything else, it starts to update XCode project file and pops XCode window. More over, when I switch from XCode back to monotouch, it updates the project and switches back to XCode. Thats's really annoying. How do I disable this "feature"?

Upvotes: 1

Views: 550

Answers (2)

Alex D
Alex D

Reputation: 739

Problem was fixed by downloading new Monodevelop: 2.8.6 beta

Upvotes: 1

dalexsoto
dalexsoto

Reputation: 3412

This behavior cannot be disabled, since there is no other way that MonoDevelop can use to communicate with xcode 4. This is because MonoDevelop creates an Xcode project on the fly (when you dbl clic any xib file within MD) and then MD launches xcode with the generated xcode project.

when you do all necessary changes in xcode and you switch back to MD the OnFocus event of MD (i don't really know if thats the event's name btw) process the changes you have done on the xcode project and modifies it in order to maintain both projects (xcode and MD) on sync

My suggestion is just make all necessary changes on xcode save them and then close it, then work on MD as usual and if you need to reopen xcode again work on it, Xcode won't bother you as long as you don't focus the MD window

I hope this helps.

Alex

Upvotes: 0

Related Questions