| bio | website | oliverfoggin.com |
|---|---|---|
| location | Leeds, United Kingdom | |
| age | 30 | |
| visits | member for | 3 years, 2 months |
| seen | 6 hours ago | |
| stats | profile views | 560 |
Lead iPhone/iOS developer at Thap LTD in Middlesbrough.
|
7h |
accepted | Data structure design and storing |
|
7h |
comment |
Data structure design and storing Awesome thanks very much. Just bought Ray's book the other day so I'll take a look. |
|
1d |
comment |
Animating a UIView Accept the answer. |
|
1d |
comment |
UILocalNotification shows UNDEFINED! message Cool, where is it showing the "UNDEFINED!" error message? |
|
1d |
revised |
UILocalNotification shows UNDEFINED! message deleted 36 characters in body |
|
1d |
comment |
UILocalNotification shows UNDEFINED! message Can you put some code. |
|
1d |
asked | Data structure design and storing |
|
1d |
accepted | Storing a small number of images with potential for IAP |
|
1d |
comment |
Storing a small number of images with potential for IAP Ah! I didn't know about the hosted content! Thanks for that! |
|
2d |
comment |
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling Exactly :D That way you only need to fetch the image from the URL once. You will see this on things like Facebook Friend Picker. When you start it all the avatars are grey placeholders. Then as you scroll they all fill in as it moves along. But then when you scroll back to a cell previously shown it will instantly show the already downloaded image. |
|
2d |
comment |
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling What he is doing will force the download every single time he scrolls to that cell in the table. Whether the images are stored persistently is up to him, but at least store them for the life time of the tableview. |
|
2d |
comment |
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling Yes, exactly my point. Looking at the request (which is shown in full) he is downloading the image asynchronously and putting it directly into the imageView in the cell. (Thus using the cell to store the data, i.e. the image). What he should be doing is referencing an object and requesting the image from that object (contained in an array or somewhere). If the object doesn't yet have the image it should return a placeholder and download the image. Then when the image is downloaded and ready to display let the table know so it can update the cell (if it's visible). |
|
2d |
comment |
How hide UIView element when Table View scroll (Like in Facebook app) Oh, you'll need to using the scrollview delegate methods to do this. It's just a UIView that sits above the table view. |
|
2d |
comment |
How hide UIView element when Table View scroll (Like in Facebook app) What effect? The black scribbling out of text? |
|
2d |
comment |
Auto Layout Error in a UICollectionViewCell Fingers crossed for WWDC. |
|
2d |
reviewed | Approve suggested edit on Adding NSArray items to UITableViewCell content view |
|
2d |
comment |
'NSInternalInconsistencyException' in iphone4 Yes, Marcel is right. You're telling the table that you're adding a row... but you're not adding a row to the datasource. (Or something similar) |
|
2d |
comment |
Relative Auto Layout Constraints in Interface Builder Ah, couldn't find that. Thanks. Fingers crossed for WWDC. |
|
2d |
asked | Storing a small number of images with potential for IAP |
|
2d |
comment |
iOS UICollectionView not scrolling when cell is touched Hmm... very odd. Does this help? stackoverflow.com/questions/12698244/… |