Have a look in the code provided with that design. eg:

//set the background pattern on the table view

UIColor* bgColor = [UIColor colorWithPatternImage:[UIImage
imageNamed:@"ipad-BG-pattern.png"]];
    [self.view setBackgroundColor:bgColor];

in AppDelegate.m:

-(void)customizeiPhoneTheme
{
UIImage *navBarImage = [UIImage imageNamed:@"menubar.png"];

    [[UINavigationBar appearance] setBackgroundImage:navBarImage
forBarMetrics:UIBarMetricsDefault];


This is the same as:

UIImage navBarImage = UIImage.FromBundle("menubar.png");
UINavigationBar.Appearence.SetBackgroundImage(navBarImage,
UIBarMetrics.Default);

You WILL need to be able to read obj-c to do ios development. There is
no way around this, in my opinion.

Some of the other stuff in this project is custom-drawn items, eg the
Switch (Yes/No), and the segmented view.



On Sun, Apr 8, 2012 at 21:51, Aziz <[email protected]> wrote:
> Hi
>
> I have a question .. How I can design my app to be like this template ?
>
>  http://www.appdesignvault.com/portfolio/ocean
>
>  I get tired and frustrated !! .. I'm trying from two days ago
>
>  I want to deal in design specially with :
>  NavigationBar , TabBar , view background , Segment
>
>  can I have a simple example please ?
>
>
> --
> View this message in context: 
> http://monotouch.2284126.n4.nabble.com/Question-about-Design-tp4541537p4541537.html
> Sent from the MonoTouch mailing list archive at Nabble.com.
> _______________________________________________
> MonoTouch mailing list
> [email protected]
> http://lists.ximian.com/mailman/listinfo/monotouch



-- 
Nic Wise
t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p
mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to