17 lines
253 B
Objective-C
17 lines
253 B
Objective-C
//
|
|
// NSString+RSXML.h
|
|
// RSXML
|
|
//
|
|
// Created by Brent Simmons on 9/25/15.
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
@interface NSString (RSXML)
|
|
|
|
- (NSString *)rs_stringByDecodingHTMLEntities;
|
|
|
|
@end
|
|
|