First you have to get NSDateComponents object with year, month and day units: NSDateComponents *components = [[NSCalendar currentCalendar] components:NSCalendarUnitDay | NSCalendarUnitMonth | NSCalendarUnitYear fromDate:[NSDate date]]; then extracting each […]
Tower Madness HD is free for limited time!
One of the coolest iPad games is now free, hurry up and grab your copy here
Quick tip: How to convert NSString to NSData?
Pretty simple: NSString* str = @”some example string”; NSData* data = [str dataUsingEncoding:NSUTF8StringEncoding]; and if you want it back: NSString* another = [NSString stringWithUTF8String:[data bytes]];
Quick tip: Architecture not supported when compiling for iOS 7.1 using XCode 5.1
Using configuration mentioned above you may receive one of those (or another) errors: types.h – User Defined Issues – Architecture not supported _types.h – User Defined Issues – […]
Quick tip: how to compile for iOS 5.1 under XCode 5
Well first though is to set deployment target to iOS 5.1 but its not so obvious. You have to remove arm64 from Architectures in “Build Settings“
Microsoft Office for iPad available on March 27th?
The Verge is reporting that Office Mobile may finally arrive on the iPad later this month during a media event on Thursday, March 27 where Microsoft’s newly minted […]
iOS 7.0.5 is out!
Just about an hour ago some devices started to show available update. Patch is targeted only for some models of iPhones 5s and 5c (presenting themselves as 5,4 […]
Quick tip: How to hide status bar in iOS 7
It may seem trivial, but usual: [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade]; is not working, nor: [UIApplication sharedApplication].statusBarHidden = YES; Now everything is simplified and minimalistic, so all you have […]
Evasi0n jailbreak for iOS 7.0.2
No, it’s not yet available…. but according to evasion blog it will support current ios release. So is it good news? Not very as Saurik (creator of cydia) […]