I am interested in developing a GUI application for OSX but would like, if possible, to avoid learning Obj. C or swift. I have the backend of the program written in python. Is there a good way of using xcode (and particularly the interface builder) to link up the GUI to the python backend? P.s. I have come across PyObjC but the documentation sucks so I'm trying to avoid it. Cheers, Jack
-
1I would suggest PyQtThomas Ayoub– Thomas Ayoub2015-04-10 12:25:20 +00:00Commented Apr 10, 2015 at 12:25
-
Is there any reason you want to use Xcode in particular?jonrsharpe– jonrsharpe2015-04-10 12:28:03 +00:00Commented Apr 10, 2015 at 12:28
-
My main motivation is that by using the interface builder you can very quickly make a gui. I had played around with tkinter but it looked terribleJMzance– JMzance2015-04-10 12:30:01 +00:00Commented Apr 10, 2015 at 12:30
Add a comment
|
1 Answer
Given your background and your motivations I would use PyQt with Qt Creator which contains a nice interface builder :

1 Comment
JMzance
great shout. Easier than xcode and still creates sharp looking guis without learning an exclusively apple language!