NSXMLElement+XEP_0335.h
464 Bytes
#import <Foundation/Foundation.h>
@import KissXML;
@interface NSXMLElement (XEP_0335)
- (NSXMLElement *)JSONContainer;
- (BOOL)isJSONContainer;
- (BOOL)hasJSONContainer;
- (NSString *)JSONContainerString;
- (NSData *)JSONContainerData;
- (id)JSONContainerObject;
- (void)addJSONContainerWithString:(NSString *)JSONContainerString;
- (void)addJSONContainerWithData:(NSData *)JSONContainerData;
- (void)addJSONContainerWithObject:(id)JSONContainerObject;
@end