PSAuthor

Framework:
/System/Library/Frameworks/PubSub.framework
Inherits from:
Declared In:
See Also:

Overview

A PSAuthor object is used to identify an author of a entry object. Use an author object to retrieve information about the author of an entry, and to associate the author with an Address Book person (ABPerson) object. Each author object can contain a name, an email address and a URL.

To determine the author of an entry, use the author property of an entry object. It returns an array of author objects. It is not recommended that you subclass PSAuthor.



Properties

email

The author's email address. (read-only)

name

The author's name. (read-only)

URL

A URL to the author's homepage. (read-only)


email


The author's email address. (read-only)

@property (
    readonly,
    retain) NSString * email; 
Discussion

Corresponds to the element of a Person construct in Atom. Parsed from the element in RSS.

Availability
Introduced in Mac OS X v10.5.

name


The author's name. (read-only)

@property (
    readonly,
    retain) NSString * name; 
Discussion

Corresponds to the element of a Person construct in Atom. Parsed from the element in RSS.

Availability
Introduced in Mac OS X v10.5.

URL


A URL to the author's homepage. (read-only)

@property (
    readonly,
    retain) NSURL * URL; 
Discussion

Corresponds to the element of a Person construct in Atom. There is no RSS equivalent.

Availability
Introduced in Mac OS X v10.5.

 

Last Updated: 2009-08-12