| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // OrderDetailHtmlCell.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 12/3/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import "OrderDetailHtmlCell.h"
- @implementation OrderDetailHtmlCell
- - (void)awakeFromNib {
- // Initialization code
- [super awakeFromNib];
- [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification object:nil];
- }
- - (void)dealloc
- {
- [[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];
-
- [[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil];
- }
- // Handle device orientation changes
- - (void)deviceOrientationDidChange: (NSNotification *)notification
- {
- [self.webview reload];
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|