Initial import.
This commit is contained in:
28
RSXML/RSXMLData.m
Normal file
28
RSXML/RSXMLData.m
Normal file
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// RSXMLData.m
|
||||
// RSXML
|
||||
//
|
||||
// Created by Brent Simmons on 8/24/15.
|
||||
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
#import "RSXMLData.h"
|
||||
|
||||
@implementation RSXMLData
|
||||
|
||||
|
||||
- (instancetype)initWithData:(NSData *)data urlString:(NSString *)urlString {
|
||||
|
||||
self = [super init];
|
||||
if (!self) {
|
||||
return nil;
|
||||
}
|
||||
|
||||
_data = data;
|
||||
_urlString = urlString;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user