1234567891011121314151617181920 |
- //
- // NSDictionary+MKRXml.h
- // libAS-Control
- //
- // Created by yyqxiaoyin on 2019/10/23.
- // Copyright © 2019 AirSmart. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSDictionary (MKRXml)
- + (nullable NSDictionary *)mkr_dictionaryWithXML:(id)xmlDataOrString;
- @end
- NS_ASSUME_NONNULL_END
|