iOS5 Pages like view - objective-c

is in iOS5 a particular view for a "Pages" style?
Is there a certain control/UI element which I could use? I do not need the preview mode of a document, just an image and a text below it which come from an NSArray or something like similar...
I'm looking for something like this:

We use Gridviews for this - See the above mentioned AQGridView

Take a look here. It's the sample of Apple that will provide pretty much the same interface as you want.
Hope it helps

You can do it with Custom UItableview. It would give you effect like grid view.

Related

Transparent frame in windows phone 8 / XAML

I have two frames, main.xaml and target.xaml. I navigated to target.xaml from main.xaml. target.xaml has some content in a little square. Now I want that besides this square the rest of the area(of target.xaml frame) should be transparent(It should show main.xaml). I could not found any solution. Please help me. Are "opacity" or something like "isFullScreen" can help ?
Caution: You need to use the correct types here: main.xaml and target.xaml are probably a Page, not a Frame.
If you really have to use a transparent Page, then you need to retemplate the Frame which presents the Pages.
I think you better use a Popup or simply a Control to achieve what you want.

Scroll with pictures

I'm programming on objective-c. How can I create scroll with paging enabled like this.
First check the property of scroll view for Paging enabled.Then set your scroll view content size corresponding to how much page you want.
You can try this implementation
https://github.com/100grams/HGPageScrollView
There's also a nice website for custom cocoa controls http://cocoacontrols.com/, where you can find very good stuff, so you won't need to invent the wheel =)

Image on top of uiTableView

Im little lost here,thats what i need to do:
But the tableview seems to take all the view and the image just gone...its possible to do that?
Use a UIView, put your UIImageView on the top, tableview at the bottom inside the UIView.
Yes it's possible.
Looking at your attached screenshot, it looks like you have the gist of it. That said, your question is quite vague without further details it will be unlikely people will be able to address your problem

Cocoa UI change

How can I remove & show new UI controls at one place in mac application.
I want to have some layout at one place..which will be shown in different conditions.
I am new to the Xcode & objective c.
Please help
Based on your comment, it sounds like you want something along the lines of a wizard. For that, I'd suggest grouping your forms into an NSTabView. You can disable the tabs, and call one of the various tab selection methods instead. Have a look at Apple's Introduction to Tab Views for more.
See NSView's -replaceSubview:with:
I found this example pretty helpful. He describes a good way to set up your related views. You can always add the animation later once you get the basics down.

make an osx preference panel with section

I need to make a preference panel with section like this.
but what is the exactly compoment has effect like these
(section I means "General,Accounts,RSS...")
SS_PrefsController by Matt Legend Gemmell looks like it's just what you want.