1,141 reputation
215
bio website letatas.com
location France
age 37
visits member for 1 year, 10 months
seen 16 hours ago
stats profile views 44

Project Manager, I also develop games and apps for iPhone, iPad ans iPod Touch:


Apr
6
comment Best approach: Displaying a “nothing here, yet” screen instead of empty tableView cells
@tilo For grouped tableviews, I use the footer section: -tableView:titleForFooterInSection:. I use footer because it is already centered. But if you wand to display more than just some text you can use the -tableView:viewForHeaderInSection: method to display a custom view. Anyway, I'm glad you find my idea relevant in your own case. It could deserve a little answer acceptation ;o)
Apr
3
comment Best approach: Displaying a “nothing here, yet” screen instead of empty tableView cells
Exact! Or just disable scroll, just like @iphonic.
Apr
3
answered Best approach: Displaying a “nothing here, yet” screen instead of empty tableView cells
Mar
20
comment How to preload UISearchDisplayController with a search string
Ok, thanks for sharing.
Mar
5
comment How to display only randomly 'filled in' textfields in a `UILabel`?
For a better random repartition prefer the use of arc4random_uniform().
Mar
4
comment UICollectionView is not scrolling smoothly
I'm not sure using queue will help you on efficiency. Have you just tried: cell.imageView.image = [UIImage imageNamed:[_images objectAtIndex:indexPath.item]]; ?
Mar
4
comment UICollectionView is not scrolling smoothly
Perhaps could you post the code you are using...
Feb
20
revised How to pass block with parameter to a method
edited tags
Feb
18
awarded  Critic
Feb
13
revised Xcode 4.6 new UIButton autoresize behavior
The last edit was wrong this is not a ios problem, but well a Xcode one, when you change the iOS sdk target, the problem persists.
Feb
13
asked Xcode 4.6 new UIButton autoresize behavior
Jan
31
comment Why is my ImageView only visible when the cell is highlighted?
You can have you UIImageView subview of your cell directly, and with a z order above all the other views. this way it will be always visible.
Jan
31
answered Why is my ImageView only visible when the cell is highlighted?
Jan
30
comment How to preload UISearchDisplayController with a search string
Did the answer solve your problem?
Jan
25
answered iOS development
Jan
22
answered How to preload UISearchDisplayController with a search string
Jan
17
comment Xcode workspace dependencies building but not packaging
Great! I used the touch workaround in the pre-build action, and it works just fine! Thanks a lot!
Jan
17
accepted Xcode workspace dependencies building but not packaging
Jan
16
comment Xcode workspace dependencies building but not packaging
I'll try it asap, and I will tell you.
Jan
16
comment Xcode workspace dependencies building but not packaging
Oh! You meant manually! That's what I already do... I thought you were talking about an automatic solution.