user2153390
user2153390

Reputation: 11

Processing in Xcode

I created an application/sketch via Processing. But now I want to add a user interface around it (not the processing ui's). Whats the best way to to this? I was thinking of creating an application in Xcode and somehow running my processing sketch or application in my Xcode application. Is there anyway to do this/ what is the best way/ should i try something besides xcode? I can export my sketch as .pde or .java. Basically it would be ideal to combine parts of Processing to a better UI builder such as Xcode.

Upvotes: 1

Views: 573

Answers (1)

George Profenza
George Profenza

Reputation: 51847

There are quite a few Processing GUI libraries like ControlP5 out there and you can always use Java's Swing components from Processing if you want closer to native controls (with the native look & feel).

If you prefer using native components it might be simpler to port your Processing code to openFrameworks, a project similar to and inspired by Processing. You might also want to have a look at the ofxNativeGUI addon

ofxNativeGUI

Upvotes: 1

Related Questions