The Artima Developer Community
Sponsored Link

Java Buzz Forum
iOS - Objective-C snippets

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Onno Kluyt

Posts: 27
Nickname: onno
Registered: Aug, 2003

Onno Kluyt is a community builder, occasional software developer and intrigued by open source
iOS - Objective-C snippets Posted: Dec 17, 2010 9:18 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Onno Kluyt.
Original Post: iOS - Objective-C snippets
Feed Title: Onno-Consulting.Com
Feed URL: http://onno-consulting.com/feed/
Feed Description: Software Communities, Collaboration, Open Source, Java
Latest Java Buzz Posts
Latest Java Buzz Posts by Onno Kluyt
Latest Posts From Onno-Consulting.Com

Advertisement
A quick collection of code snippets or the joy of navigating a sometimes quirky SDK. Setting a pattern as background to an UIView, a category method I added to UIViewController: - (void)makePatternedBackground { UIImage *tile = [UIImage imageNamed:@"viewBackground-tile.png"]; UIColor *pattern = [[UIColor alloc] initWithPatternImage:tile]; [self.view setBackgroundColor:pattern]; [pattern release]; } The png image is a 16×16 pixel pattern created in Photoshop. Rounded corners for images [...]

Read: iOS - Objective-C snippets

Topic: Not #516 Northern Loggerhead Shrike Previous Topic   Next Topic Topic: Meet the Facebook couple who tied the knot at 82 and 77!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use