Mobile app version of vmapp.org
Login or Join
Voss6371140

: How to convert PSD files to Xcode App IOS 7 Flat Style Experts, I would like to ask about how to convert PSD files to IOS 7 Flat Style, I know there are many companies providing PSD TO

@Voss6371140

Posted in: #Ios

Experts, I would like to ask about how to convert PSD files to IOS 7 Flat Style, I know there are many companies providing PSD TO HTML5,But I have not found this conversion tool to xocde,


Source from 45+ Cool Premium iOS 7 Flat UI Kits & App Mockup for For Designers

I purchased a Flat UI Kit for IOS, BUT IT'S PSD FILES NO CODE, ONLY PSD FILES
I need to ask a ios programmer to write code for this kits?

Can anyone recommend a tool to convert psd to xcode? Many thanks

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Voss6371140

1 Comments

Sorted by latest first Latest Oldest Best

 

@Goswami567

It's not possible to convert all of what Photoshop does to code. But much of it can be as Photoshop's features are fundamentally Core Graphics and Core Image APIs with a bit of an Adobe twist on them.

So there are three ways of thinking about this.


Mimicking what you've designed in Photoshop via Core Graphics (Quartz2D) and Core Image (kind of like filters, effects and masking tools of Photoshop) and then place everything on the screen in code. This is the hardest way, but has the smallest memory footprint and the best opportunity for performance optimisation and flexibility with animation, design and layout on the device.
Something like PaintCode, which attempts to do what I'm talking about in the above technique automagically. This is a very good app, but you have to learn many of its intricacies and paradigms, which are fundamentally rooted in what I'm talking about regarding Core Graphics and Core Image. It's not going to work with every kind of feature of .psd files, and you will have to optimise them in many ways for PaintCode to fully understand them: www.paintcodeapp.com You can export all the imagery from Photoshop as various .png slices for building back together as bitmaps in Xcode, and Storyboards now has much support for doing this, plus using images in Core Animation is cry well supported. Plus this works great with the whole manner in which UIKit works. But this is the least flexible option because you'll have to not only pixel perfect place things, but you won't be able to do much without starting again on the Photoshop files. This has the largest memory footprint, potentially blowing out to dozens of megabytes (even compressed) for a universal app.


And, finally, what most people do is various combinations of the approaches above as per their requirements and capabilities.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme