| bio | website | |
|---|---|---|
| location | ||
| age | 40 | |
| visits | member for | 4 years, 7 months |
| seen | 23 hours ago | |
| stats | profile views | 806 |
|
Jun 16 |
comment |
remove white from jpg with smooth edge in objective-c there is some category code that creates a mask using a color with CGImageCreateWithMaskingColors. Works great but jagged edges most of the time. Was looking for something similar that would have a smooth edge instead |
|
Jun 16 |
asked | remove white from jpg with smooth edge in objective-c |
|
Jun 14 |
awarded | Popular Question |
|
Jun 7 |
awarded | Notable Question |
|
Jun 6 |
awarded | Popular Question |
|
Jun 5 |
asked | match the MD5 hash from objective-c in c# |
|
Jun 3 |
awarded | Good Question |
|
May 31 |
awarded | Nice Question |
|
May 31 |
comment |
Core Data and Managed Object Contexts This solved a huge problem I had - thank you! |
|
May 28 |
comment |
optimize sqlite query that has multiple parameters using FMDB no exactly, there is a list of 5 options and they can add and remove them as they wish, I thought of just searching the results every time they add a filter but if they pick filter 1 and then filter 2 and then remove filter 1 and choose filter 3 I have to start from scratch but that might be my best best - initial search on 1 filter and then do then filter the rest from the result. |
|
May 28 |
comment |
how do I render an NSObject in local HTML template in iOS this is what I finally ended up doing |
|
May 28 |
asked | optimize sqlite query that has multiple parameters using FMDB |
|
May 25 |
awarded | Popular Question |
|
May 20 |
comment |
NSJSONSerialization leaking - can't figure out why? I guess I do not know it that is the issue, running static analyzer shows me nothing wrong in the method though |
|
May 20 |
comment |
NSJSONSerialization leaking - can't figure out why? running the leaks tool in Profiler, extended details for the leaks point directly to that line of code |
|
May 20 |
asked | NSJSONSerialization leaking - can't figure out why? |
|
May 20 |
comment |
Helper method to load images abandoning memory in iOS - how do I avoid this? There are at most 25 images (thumbnails) shown at once - they get lazy loaded - it is like catalog so these images get loaded and unload all of the time - so the cache should really help I would imagine |
|
May 20 |
comment |
Helper method to load images abandoning memory in iOS - how do I avoid this? thanks for this hugely insightful answer, this will help me for sure - I have not implemented NSCache before and I load at least a 100 images at a time all of the time. My main issue was old delegate declarations from iOS 4.3 that never got updated properly to ARC - so my uiviewcontroller and all of it's UIViews and UIImages were getting retained in memory never to be released. |
|
May 19 |
comment |
Helper method to load images abandoning memory in iOS - how do I avoid this? @rmaddy it looks like you were right, this is an old project that started as supporting iOS 4. It had a bunch of delegates not set as weak, so the entire view was being abandoned into memory - add as an answer so I can give you credit. |
|
May 17 |
comment |
Helper method to load images abandoning memory in iOS - how do I avoid this? I was just trying anything with that autorelease pool, this solution still gives me the same amount of heap growth :( |