WXSDKInstance+DCExtend.h 488 B

1234567891011121314151617181920212223
  1. //
  2. // WXSDKInstance+DCExtend.h
  3. // libWeex
  4. //
  5. // Created by XHY on 2019/2/18.
  6. // Copyright © 2019 DCloud. All rights reserved.
  7. //
  8. #import "WXSDKInstance.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WXSDKInstance (DCExtend)
  11. /**
  12. 交换原方法,在options中添加一些自定义参数
  13. */
  14. - (void)_dc_renderWithURL:(NSURL *)url options:(NSDictionary *)options data:(id)data;
  15. - (void)_dc_renderView:(id)source options:(NSDictionary *)options data:(id)data;
  16. @end
  17. NS_ASSUME_NONNULL_END