Help to find out what component is being used - objective-c

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.

Related

How to create UIView like Notification Center as iOS 7

Hello Follks,I'm developing one Restaurant App.I want to create a view which float from top to bottom on touch and pan gesture with bouncing,push behaviour,gravity,collision(UIKit Dynamics).Any help will be really appreciated thanks..
I'd like to create a View Like Notification Center in iOS 7
Sorry for my english
It appears to be a segmented controlled table. This or this may be of some use to you.
There is a PullableView example on GitHub. For iOS7 like animations, check out UIDynamicAnimator.
You may be able to create a custom transition to a ViewController using this. Or check out this document from Apple about pulling scroll views.
have a look on this tutorial, hope it may help :)

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

Drawer View in Xcode?

this is my first mac application, and i have been wanting to make something like this:
But, i have been looking and have found nearly nothing about the Window and Drawer. How can i put this into my application? Thanks!
That's not a drawer, that's a sheet. Here's the conceptual documentation about sheets, which includes sample code.

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

Xcode loading View feature

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.