Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Two interesting things: it measures 20 pixels down (size of status bar) and your line "nextCategoryController.title = ..." doesn't seem to do anything. So...</p> <p>1) I assume you haven't used <code>setStatusBarHidden</code>?</p> <p>2) Looks like navController stuff isn't working. Can you give the code from the appDelegate that creates the tabBar and NavController?</p> <p>3) Add this code, and try calling <code>[self dumpWindow: @"VDL"]</code> from your Subcategory <code>ViewDidLoad</code> method. I find it invaluable whenever checking whether my view structure is correct.</p> <pre><code>- (void) dumpWindowFrom:(NSString *) fromText { [self dumpViews: nil from:fromText]; } void dumpViewsRecursive(UIView* view, NSString *text, NSString *indent) { Class cl = [view class]; NSString *classDescription = [cl description]; if ([text compare:@""] == NSOrderedSame) NSLog(@"%d: %@ %@ %@", (int)view, classDescription, NSStringFromCGRect(view.frame), view.hidden ? @"Inv" : @"Vis"); else NSLog(@"%d: %@ %@ %@ %@", (int)view, text, classDescription, NSStringFromCGRect(view.frame), view.hidden ? @"Inv" : @"Vis"); for (NSUInteger i = 0; i &lt; [view.subviews count]; i++) { UIView *subView = [view.subviews objectAtIndex:i]; NSString *newIndent = [[NSString alloc] initWithFormat:@" %@", indent]; NSString *msg = [[NSString alloc] initWithFormat:@"%@%d:", newIndent, i]; dumpViewsRecursive (subView, msg, newIndent); [msg release]; [newIndent release]; } } - (void) dumpViews: (UIView *) view { dumpViewsRecursive (( (!view) ? [[UIApplication sharedApplication] keyWindow] : view), @"" ,@""); } - (void) dumpViews: (UIView *) view from:(NSString *) fromText{ dumpViewsRecursive ((!view) ? [[UIApplication sharedApplication] keyWindow] : view, fromText, @""); } </code></pre> <p>4) You could always just cheat and add:</p> <pre><code>CGRect frame = [nextCategoryController.view frame]; frame.origin.y = frame.origin.y+20.0; [nextCategoryController.view setFrame:frame]; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload