I recently ran into some interesting issues with an NSTimer I had running in a iPhone App within the area shown below (viewDidLoad). This is the correct way to launch scheduled time interval function however….. The wrong spot! – (void) ViewDidLoad { [super viewDidLoad]; NSTimer timer1* [NSTimer scheduleTimerWithTimeInterval:5.0 target:self selector:@(timer1Tasks) userInfo:nil repeats:YES]; } […]
Archive | iPhone Dev
RSS feed for this sectionTech Help Blog Posts regarding random iPhone Development help

iPhone Development Color Chooser from HEX
So, as many of you iPhone Development people out there may know the UIColor users a 0-100 floating point number style input to achieve a custom colour in code. After some trawling the web tonight when I needed to match a specific colour and dynamically change a Buttons background tint or .tintColor depending on a […]