williamnoto

Results 6 comments of williamnoto

try: _keyboardControls.barTintColor = [UIColor blackColor]; _keyboardControls.barStyle = UIBarStyleBlackOpaque; worked for me.

Hi Mike, Thanks so much for your very prompt reply. That did seem to make a difference, except now I don’t seem to be getting the benefit of the spacer...

well this is a big improvement… - (UIEdgeInsets)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{ NSArray \* itemArray = _visibleSectionedResults[section]; if (itemArray.count == 0) return UIEdgeInsetsMake(CGFLOAT_MIN, CGFLOAT_MIN, CGFLOAT_MIN, CGFLOAT_MIN); else { CGFloat margin =...

hmm… which delegate method? sorry to be obtuse. > On Apr 15, 2015, at 11:39 PM, Mike Swanson [email protected] wrote: > > Looks like you're ahead of me. The only...

Oh, man, I am really out of it. I forgot to show you that I was doing this: - (UIEdgeInsets)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{ NSArray \* itemArray = _visibleSectionedResults[section]; if (itemArray.count...

OK, great. Thanks again for all of your help. Really appreciate it. > On Apr 16, 2015, at 12:30 AM, Mike Swanson [email protected] wrote: > > Of course, I don't...