상세 컨텐츠

본문 제목

[iOS 개발] 네비게이션 타이틀 이름을 지정

헉!!/iOS

by 권태성 2011. 9. 15. 16:31

본문


저의 경우 탭바 형식에 네비게이션 컨트롤러를 넣어서 그 컨트롤러의 타이틀을 지정할때 사용하였습니다.

사용예제는 아래와 같습니다.

- (id) initWithCoder:(NSCoder *)aDecoder

{

if (self=[super initWithCoder:aDecoder])

{

self.title = @"INSERT Title NAME";

}

return self;

}




참고용으로 개발자 문서의 레퍼런스를 올립니다.


NSCoding Protocol Reference

Adopted by
Various Cocoa classes
Framework
/System/Library/Frameworks/Foundation.framework
Availability
Available in iOS 2.0 and later.
Companion guide
Declared in
NSObject.h
Related sample code

Overview

The NSCoding protocol declares the two methods that a class must implement so that instances of that class can be encoded and decoded. This capability provides the basis for archiving (where objects and other structures are stored on disk) and distribution (where objects are copied to different address spaces).

In keeping with object-oriented design principles, an object being encoded or decoded is responsible for encoding and decoding its instance variables. A coder instructs the object to do so by invoking encodeWithCoder: orinitWithCoder:encodeWithCoder: instructs the object to encode its instance variables to the coder provided; an object can receive this method any number of times. initWithCoder: instructs the object to initialize itself from data in the coder provided; as such, it replaces any other initialization method and is sent only once per object. Any object class that should be codable must adopt the NSCoding protocol and implement its methods.

It is important to consider the possible types of archiving that a coder supports. On Mac OS X version 10.2 and later, keyed archiving is preferred. You may, however, need to support classic archiving. For details, see Archives and Serializations Programming Guide.

Tasks

Initializing with a Coder

Encoding with a Coder

Instance Methods

encodeWithCoder:

Encodes the receiver using a given archiver. (required)

- (void)encodeWithCoder:(NSCoder *)encoder
Parameters
encoder

An archiver object.

Availability
  • Available in iOS 2.0 and later.
Declared In
NSObject.h

initWithCoder:

Returns an object initialized from data in a given unarchiver. (required)

- (id)initWithCoder:(NSCoder *)decoder
Parameters
decoder

An unarchiver object.

Return Value

self, initialized using the data in decoder.

Availability
  • Available in iOS 2.0 and later.
Declared In
NSObject.h

관련글 더보기