YHLinkParserDelegate.h 477 Bytes
//
//  YHLinkParserDelegate.h
//  YohoExplorerDemo
//
//  Created by gaoqiang xu on 4/21/15.
//  Copyright (c) 2015 gaoqiang xu. All rights reserved.
//

typedef void(^YHLinkParserDoneParse)(NSDictionary *result);

@protocol YHLinkParserDelegate <NSObject>
@required

@property (copy, nonatomic) YHLinkParserDoneParse completion;

/**
 *  解析链接
 *
 *  @param string 链接的url string
 *
 *  @return 解析是否成功
 */
- (BOOL)parseString:(NSString *)string;

@end