FMIceLinkStringAssistant Class Reference

Inherits from NSObject
Declared in FMIceLinkStringAssistant.h
FMIceLinkStringAssistant.m

Overview

Contains methods for string manipulation.

+ isNullOrWhiteSpaceWithS:

+ (bool)isNullOrWhiteSpaceWithS:(NSString *)s

Parameters

s

The s.

Discussion

Declared In

FMIceLinkStringAssistant.h

+ subArray:offset:

Creates a subarray from an existing array.
+ (NSMutableArray *)subArray:(NSMutableArray *)array offset:(int)offset

Parameters

array

The source array.

offset

The offset into the source array.

Return Value

The subarray.

Discussion

Creates a subarray from an existing array.

Declared In

FMIceLinkStringAssistant.h

+ subArray:offset:count:

Creates a subarray from an existing array.
+ (NSMutableArray *)subArray:(NSMutableArray *)array offset:(int)offset count:(int)count

Parameters

array

The source array.

offset

The offset into the source array.

count

The number of elements to copy into the subarray.

Return Value

The subarray.

Discussion

Creates a subarray from an existing array.

Declared In

FMIceLinkStringAssistant.h