| 12345678910111213141516171819202122 |
- //
- // SyncControlPanelViewController.h
- // iSales-NPD
- //
- // Created by Ray on 7/8/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <MessageUI/MessageUI.h>
- @interface SyncControlPanelViewController : UIViewController<MFMailComposeViewControllerDelegate>
- @property (strong, nonatomic) IBOutlet UIProgressView *progress_current;
- @property (strong, nonatomic) IBOutlet UIProgressView *progress_overall;
- @property (strong, nonatomic) IBOutlet UITextView *tv_log;
- @property (strong, nonatomic) NSString* action_string;
- @property (strong, nonatomic) UIBarButtonItem *closeButton;
- -(void) onLogUpdate;
- -(void) onProgressUpdate;
- -(void) onSyncFinish;
- @end
|