SIParser:一个简单的 Html/XML 解析器
HTMLParser
导入项目中,Bulid Phases
-> Link FrameWork and Libraries
,添加 libxml2.tbd
或 libxml2.dylib
Bulid Setting
-> header search paths
,添加 $(SDKROOT)/usr/include/libxml2
pod 'SIParser', '~> 0.1.0'
导入头文件
#import "Parser.h"
初始化Parser
NSString *htmlString = @"<username>我是username自定义样式</username><password size='20'>我是password自定义样式,注意属性内容</password>";
SIHTMLParser *htmlParser = [[SIHTMLParser alloc] init];
查询节点信息
SINodeList *nodes = [htmlParser nodeListWithString:htmlString];
转换为富文本
//自定义样式
NSDictionary *customStyles = @{
NSForegroundColorAttributeName: [UIColor orangeColor],
NSBackgroundColorAttributeName: [UIColor blueColor]
};
[htmlParser addStyle:customStyles forTag:@"username"];
NSAttributedString *attributedString = [htmlParser parseString:htmlString];
更多使用请查看头文件说明
SIParser 采用 MIT 许可证。有关更多信息,请参阅 LICENSE 文件。