Mobile app version of vmapp.org
Login or Join
Si6392903

: Designing a UI for Programmers to Use I am doing UI design for a group of programmers who are working on building music-related software. I have created .psd files for all of the mockups,

@Si6392903

Posted in: #AdobePhotoshop #InterfaceDesign

I am doing UI design for a group of programmers who are working on building music-related software. I have created .psd files for all of the mockups, graphics, etc.

I was assuming they just needed the (many) images to put into the code, but they want me to use a GUI to spit out the necessary code.

My question: Is there a GUI tool that can build VERY UNIQUE designs, and can spit out the mockups in code using MatLab or Java? -- Or should I just say no and give them the images to use in the code. (we are talking guitar-pedal knobs, EQ sliders, etc.)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Si6392903

1 Comments

Sorted by latest first Latest Oldest Best

 

@Carla748

There is no universal way to describe a user interface. It's typical for a designer to hand over image assets as one or a combination of these things:


Individual files. Probably 32bit PNGs if you're creating an iOS, Android or Mac app.
Sprite sheets. More common for games than apps. Sprite sheets are also known as texture atlases.
Photoshop documents (PSD). Sometimes developers prefer to cut things up themselves, so they can experiment with different ways to implement the UI in code.
Some information describing the non-image aspects of the design. Text size and colour etc.


Is the goal final production assets? If so, chances are the developer will (or should) want things as described above. If you're just creating mock ups to demonstrate how the app works, then there's many approaches, including using HTML/CSS, Apple's Keynote app. Basically anything that can demonstrate how the app moves and fits together.

Ultimately, the decision on how to construct the UI is with the developer. Even if it's an iOS app, where the IDE is pretty locked down, there's still many ways of approaching the code side (XIBs, auto-layout, doing everything in code).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme