The iOS framework that grows only as fast as its documentation
NIOverviewConsoleLogPageView Class Reference

Overview

A page that shows all of the logs sent to the console.

overview-log1.png
The log page.
Inheritance diagram for NIOverviewConsoleLogPageView:
NIOverviewPageView

Tasks

Configuring a Page
NSString * pageTitle property
 
Subclassing

The following methods are provided to aid in subclassing and are not meant to be used externally.

UILabel * titleLabel property
 
(UILabel *) - label
 
Creating a Page
(NIOverviewPageView *) + page
 
Updating a Page
(void) - update
 

Method Documentation

pageTitle

The title of the page.

@property (nonatomic, copy) NSString* pageTitle;

titleLabel

The title label for this page.

@property (nonatomic, readonly, strong) UILabel* titleLabel;
Discussion

By default this label will be placed flush to the bottom middle of the page.

page

Returns an autoreleased instance of this view.

+ (NIOverviewPageView*)page;

update

Request that this page update its information.

- (void)update;
Discussion

Should be implemented by the subclass. The default implementation does nothing.

label

Creates a generic label for use in the page.

- (UILabel*)label;