albertopasca.it
Objc – Digital clock using IBOutletCollection - while (true) { }
Today, a simple snippet to learn how to use IBOutletCollection and image spritesin your applications. IBOutletCollection are introduced with iOS4 as you can see on Apple iOS diff guide ( http://goo.gl/C8NRZz ) and are a collection of IBOutlets. [code lang=”java” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]@interface APViewController : UIViewController { IBOutletCollection (UIView) NSArray *_digitViews; NSTimer *_timer; }[/code] That you can connect in the classic way: To read Read More
Alberto Pasca