make an osx preference panel with section - objective-c

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.

Related

Metro UI Horizontal Accordin

I found how to make a vertical Accordion in Metro UI.
But I would like to make a horizontal one.
Is it possible? If so, how do I proceed please?
if I understood correctly then in the link you provided by adding the following css to the first div.cell:
.cell{width: 100%;}/*the div container containing the frame classes*/
.frame{float: left;}
.frame .heading, .frame .content{width: 200px;};/*you can choose the width you prefer but I guess they have to be the same width*/
you will get something like this:
You could also enable overflow in the '.frame .content' class if need be. Hope it helps.

iOS5 Pages like view

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.

Is there any way of changing colors of text in Xcode?

What I want to know is if you can change the default color value for something like comments:
//Yo
Which are by default, green. I want to know if you could make this red black or any other colors.
Also as a bonus, is there anything that works kind of like a little sticky note, but in the code? Some sort of image or something that would be easily recognized if you were scrolling through lots of code very fast. Like a place mark, an eye catcher. That doesn't affect the code.
Go to Xcode preferences, Fonts & Colors.
XCode menu->Preferences->Fonts and Colors, then have fun...
To put markers in your code you can use
#pragma mark - Something
It will then show in the drop down menu showing all your functions/declarations.
Edit: for newer Xcode versions, just use:
// MARK: - comment

A UITabBar like this

I wondering how I can make a UITabBat like this:
The height of this is more than the stand UITabBar and also the icons are larger. Also the arrow on top.
I tried changing the height but it looks really bad. The icons aren't centred vertically. Also I couldn't change the background.
Thanks.
I'd suggest several things;
Check out the core animation videos from this years wwdc, you can use it to create effects like the triangle and move it back and forth. Then write your own tab bar controller class.
you could also consider a third party library like http://cocoacontrols.com/platforms/ios/controls/tabbarkit

How to achieve a groupbox type of control with following look and feel

Hi i want to achieve some thing like a groupbox with controls insideit and there will be a rectangle border around that with a caption on top left where border is hidden for that area.
So how i can achieve some thing like this.
I tried to upload an image but could not.
Please let me know if htere is some way to do that.
Thanks in advance.
Have a look at the following implementation. It does exactly what you are looking for:
http://programmerpayback.com/2008/11/26/silverlight-groupbox-control/
Here is another implementation (in case the first one doesn't work for you):
http://leeontech.wordpress.com/2008/04/10/groupbox/
HTH