If you are new to iOS programming this may take you a while to found out. But I’m here to help so will give you ready to use […]
Quick tip: AppDefaultZone does not support sync semantics
If you just started playing with CloudKit, probably you will see that error trying to implement custom synchronization. Why need custom synchronization? Because receiving push message each time […]
How to add unix timestamp to NSDictionary
Recently I had an NSDate object which had to be convered to unix timestamp and added to NSDictionary. But, what a surprise – I can’t add anything which […]
Detecting changes in YTPlayer library
Recently I noticed this may not be such obvious, but if you need to know when user pauses video or resumes playback, just use: – (void)playerView:(YTPlayerView *)playerView didChangeToState:(YTPlayerState)state; […]
Track My TV 1.2.4 is out
Without fanfares, with only one bugfix: – fixed rare crash while episodes were fetched from our source You can grab it here.
Apple TV 4th gen is not recognized by iTunes 12.3?
Lot of people have same problem – they received developer kit, connected via USB-C to Mac and iTunes shows nothing. I saw lot of solutions, but only one […]
Fault data when fetching from CoreData
When you need to quickly display NSArray what you do? Yes, NSLog(@”%@”, myarray), me too. But when you will do this on array fetched from CoreData what will […]
GoogleSignIn.bundle specifies a non-existent file for the CFBundleExecutable key
Few days ago I changed sign in process for Google+ and when submitted app to AppStore had such info: Invalid Bundle – Info.plist of “Tic Tac Toe Firebase.app/GoogleSignIn.bundle” […]
GIDSignInButton – how to change the look?
Just installed newest version of Google SignIn SDK (2.2.0) and was wondering how to change look of default sign in button since it is plain view? The answer […]