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

Overview

A page that allows you to modify NIMaxLogLevel.

overview-maxloglevel1.png
The max log level page.
Inheritance diagram for NIOverviewMaxLogLevelPageView:
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;