This is bugfix update, most significant change is optimied series update – now all is done in one request instead of one per serie. You can grab it […]
Quick tip: How to create WooCommerce product variants programmatically?
I found few solutions, but obviously none of them were working, so had to find it out by myself. So where to start – lets suppose we have […]
Track My TV 1.2.0 is out
Finally after lot of troubles with preparing own API new version comes out, new stuff: – fixed small bugs – *** NEW *** added trakt.tv sync – *** […]
TrackMy Tv 1.2.0
Yesterday, after long period of API testing, new version was submitted gor review, the most important changes: trakt.tv synchronization switched to our own API – currently only for […]
Few words about dequeueReusableCellWithIdentifier danger….
Well… this should be obvious, but what does “dequeueReusableCellWithIdentifier” mean? More or less it means each cell can be REUSABLE. Yesterday I was working on new Track My […]
XCTAssertEqual fails when comparing two strings?
This can be frustrating at first time, but this method is for C structures, for comparing NSString with another one just use: NSString* mystring = [NSString stringWithFormat:@”%@”, [dict […]
Track My TV 1.1.0 is finally out
Yes, it took some time, 5 AppStore rejections becouse of “No data on Apple Watch” (?!) which works on simulator without any troubles. Anyway you can grab it […]
Track My TV described at raywenderlich.com
Some good news, guys at raywenderlich.com just posted reader’s app reviews at http://www.raywenderlich.com/102607/readers-app-reviews-april-2015 and Track My TV was mentioned in top 5.
Quick tipe: How to set the height of a Today Widget Extension?
Problem seems to be funny, but it is not such obvious as we cannot set view height directly. So in: – (void)viewDidLoad just add: self.preferredContentSize = CGSizeMake(0, 300); […]