ifish/Ifish/AliPush/UTMini.framework/Headers/UT.h

30 lines
928 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// UT.h
// miniUTSDK
//
// Created by 宋军 on 15/5/19.
// Copyright (c) 2015年 ___SONGJUN___. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface UT : NSObject
////=====================================h5&Native接口=====================================
/**
* @brief h5&Native打通
*
* @warning 调用说明:由windwave封装供aplus_wap.js调用
*
*
*
* @param dataDict aplus_wap.js采集的h5信息都通过该字典传进来,该字典中必须有key(funcType)
* 用来区分采集的是哪个事件信息比如funcType=2001则h5UT内部会调用
* pageEnter来处理funcType=2101则调用ctrlClicked处理
*
*/
+(void) h5UT:(NSDictionary *) dataDict view:(UIView *) pView viewController:(UIViewController *) pViewController;
@end