659 reputation
49
bio website ank.net.au
location Australia
age
visits member for 2 years, 10 months
seen 22 hours ago
stats profile views 40

May
2
awarded  Nice Answer
Mar
20
comment How can i get next date using NSDate?
Will not do what you expect if there is a leap second.
Mar
20
comment How can i get next date using NSDate?
Also when there is a leap second.
Mar
17
answered Accessing Local file using NSURL
Mar
17
awarded  Enthusiast
Mar
16
answered Get total height of webView's content using Javascript
Mar
12
answered AFHTTPClient subclass with custom NSMutableURLRequest objects
Mar
11
comment search NSArray contains NSDictionary, with “time efficiency”
Hope it helps. Good luck!
Mar
11
awarded  Yearling
Mar
10
answered search NSArray contains NSDictionary, with “time efficiency”
Mar
9
comment search NSArray contains NSDictionary, with “time efficiency”
Look into the full text search add-on for sqlite. It is an optional you can compile in.
Mar
9
comment search NSArray contains NSDictionary, with “time efficiency”
Have you tried indexing it into an in-memory sqlite? Otherwise you would be rewriting data structures that are already implemented in sqlite - and it also supports full text search.
Mar
8
awarded  Self-Learner
Mar
8
comment Cocoapods: turning MagicalRecord logging off
No worries! Would love to hear other approaches to this problem.
Mar
7
comment Disable MagicalRecord error messages and warnings
If you are using Cocoapods, this is what you need: stackoverflow.com/questions/15284067/…
Mar
7
asked Cocoapods: turning MagicalRecord logging off
Mar
7
answered Cocoapods: turning MagicalRecord logging off
Mar
6
comment Create class diagram from already existent iphone code
I wish I could upvote this answer twice. Thanks!
Feb
12
comment Does UIView's addSubview really retain the view?
Watch out! In modern objective-c assigning to self.testViewController most likely means that you have a property backing it out with (nonatomic, retain), so this error would not apply. To put it another way, it's not true in general that assigning to self.something will introduce a leak - which this solution implies.
Feb
7
comment UITextField text not appearing at the center
Vertically or horizontally centered?