| 1234567891011121314151617 |
- //
- // OrderDetailHtmlCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 12/3/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <WebKit/WebKit.h>
- @interface OrderDetailHtmlCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet WKWebView *wkwebview;
- @property (strong,nonatomic) NSString* html;
- @end
|