You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
488 B
24 lines
488 B
4 years ago
|
//
|
||
|
// WXSDKInstance+DCExtend.h
|
||
|
// libWeex
|
||
|
//
|
||
|
// Created by XHY on 2019/2/18.
|
||
|
// Copyright © 2019 DCloud. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "WXSDKInstance.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface WXSDKInstance (DCExtend)
|
||
|
|
||
|
|
||
|
/**
|
||
|
交换原方法,在options中添加一些自定义参数
|
||
|
*/
|
||
|
- (void)_dc_renderWithURL:(NSURL *)url options:(NSDictionary *)options data:(id)data;
|
||
|
- (void)_dc_renderView:(id)source options:(NSDictionary *)options data:(id)data;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|