anitomy_bridge

@interface anitomy_bridge : NSObject

This class allows you to use Anitomy with Objective-C or Swift Projects.

  • Tokenizes a media’s file name. Convenience method so you don’t have to initalize an instance of Anitomy. - parameter: filename The filename to tokenize. - returns: NSDictionary Returns a dictionary containing information of a filename.

    Declaration

    Objective-C

    + (NSDictionary *)tokenize:(NSString *)filename;

    Parameters

    filename

    The filename to tokenize.

    Return Value

    NSDictionary Returns a dictionary containing information of a filename.

  • Tokenizes a media’s file name. - parameter: filename The filename to tokenize. - returns: NSDictionary Returns a dictionary containing information of a filename.

    Declaration

    Objective-C

    - (NSDictionary *)tokenize:(NSString *)filename;

    Parameters

    filename

    The filename to tokenize.

    Return Value

    NSDictionary Returns a dictionary containing information of a filename.