Hii friends,
i m new to iphone development and i have gone through some iphone applications with awesome UI design.
i guess those UIElements are not standard Iphone controls,if so
How to create Custom Controls or any different nice look for controls?
Thanks to all..
Check out the three20 UI Library.
Related
Which Xcode template do I select to build say facebook app ?
Is it an navigation based app? Or is it a windows app with multiple view screens?
I'm going to select the windows based template! Now howdy I add addition screens?
In my opinion, this kind of screen is not in UIKit.
Maybe someone has develop external framework for this.
You can do something like a UIView with UIImage or UIButton that manage events
Edit : Three20 framework is what you search for
http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/URL_iPhone_OS_Overview/index.html#//apple_ref/doc/uid/TP40007592
http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/URL_Tools_for_iPhone_OS_Development/index.html#//apple_ref/doc/uid/TP40007593
I have a question about the objective C. I am writing the iPhone application and I want to app which can also run on iPad. Is there are some change do I need to do? As I set the element in code rather than using the Interface builder. Do I need to reset the x,y,width and height for the application? Thank you very much.
You can run exactly the same app developed for iPhone on the iPad. However, it will not use the full screen of the iPad. Look at the Facebook app for instance, you can zoom it but it doesn't look very nice. If your goal is to run an iPhone app on the iPad, you don't have to bother much. If you want to really support iPad in your application you should implement a separate UI for iPad and this is supported in XCode. The iPad has of course a larger screen but also some additional layouts and controls that make apps look great on the iPad.
Have a look at http://developer.apple.com they have more information about this.
how to use custom font in iphone application?
i need to use in custom font in my iphone / ipad appliaction. Can i embed custom font in my application?
Check this:
http://www.perfectline.co.uk/blog/uiappfonts-custom-fonts-with-the-iphoneipad-3-2-sdk
I am quite sure I saw a sample in WWDC sessions, you could look also the videos ;)
im new to ipad/iphone development. what are some ways to skin an ipad app? (eg: the notes app that came with the iPad) Is there any tutorials or code samples?
I think the question has to do with skinning your own apps instead of skinning Apple's pre-existing apps. Assuming this:
Any buttons can be easily skinned with images. Just add the image to your XCode project. Then, select the button in Interface Builder and in the attributes inspector you can choose the image there.
You can skin other views by adding UIImageView's that cover the whole view and then moving them into the background of the layout.
My app Rith uses all of the standard controls, but everything is skinned.
can you use an image (previously created with Photoshop) to design your app ?
I mean connecting the psd objects to functions in app etc.
Kind of - you can create UIButtons, and set images as background. Then you can wire actions in your code to the button presses.
With the Briefs framework you can take a series of images and make a functional iPhone application from them by setting what happens when you tap on particular areas of the screen. While primarily intended for wireframes of applications, you could create a simple flashcard-style application from this.