Xcode loading View feature - objective-c

I was reading a tutorial a while back and I saw a feature I would love to implement. It was a loading view that took the form of a UIAlertView, and you could customize the image in it and the text. If anybody knows what class that is it would be greatly appreciated. Thanks.

You perhaps are looking for UIAlertView Custom Graphics or Create a Custom Alert.

Related

colourful icon for a custom activity in uiactivityviewcontroller.?

i am new to iOS .i want colorful icon for custom activity in UIActivityViewController.please help me out.i have tried a lot but cant get proper solution.
Thanks in Advance.
Try adding an underscore to the method in your custom UIActivity class
- (UIImage *)_activityImage {}
Your colourful image will display

Display Graph in Titanium iOS

In my app, i need to display the status of the feedback by a Graph(chart) view.
Is webview is need?
I tried RGraph framework, which is showing errors for me, how to use this framework?
Are they're anyother ways their to achieve this?
Thanks in Advance!
Yes, this library utilizes a canvas, which you'll need a webview to display on. Some possibly helpful reading material on displaying charts:
Display Charts with Titanium

Settings up Paging Control

I am trying to set up Page Control and I was using Apple's example of Page Control as a springboard to integrate into my app.
My main question is that in the Apple example it is using the initWithXib and I don't use that anymore. I drew it on storyboard and linked it to the class that I am pointing to when it's loading a scrollViewPage. It however does not show up? Is there a initWithStoryboard like the Xib?
After researching, I tried initWithCoder, but it didn't work or I coded it wrong.
Any guidance would be greatly appreciated.
Thanks!
Alan

Help to find out what component is being used

I'm a beginner with Objective-C and I have to create something similar to the one on this image but I don't know what are the components on the top bar.
Thanks in advance for any help
It looks like a navigation bar but I think a customized view with customized buttons are what it actually is.

What is the UI element on iPad Photos App?

Please see the youtube:
http://www.youtube.com/watch?v=FC95ARd96wI
notice that the 0:35 , the iPad bottom have a thin photo bar. Is it a private API or I need to create my own or Which UI Element will it be? Thz.
That's definitely a custom job. However, it's basically a UIToolbar with a fancy slider on it. You can easily make the toolbar using Interface Builder, and you could take a simple stab at the slider by taking a regular UISlider and giving it some replacement images for its track, thumb, etc. See the documentation on UISlider.
If that doesn't quite work, then you're going to have to get down and dirty in UIControl code and make on yourself from scratch (or hope and pray that someone has written an open source version already).