-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMTWSaveViewController.m
More file actions
executable file
·271 lines (244 loc) · 8.33 KB
/
MTWSaveViewController.m
File metadata and controls
executable file
·271 lines (244 loc) · 8.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
//
// MTWSaveViewController.m
// Bokeh Camera
//
// Created by CaiYu on 13-8-30.
// Copyright (c) 2013年 Meituwan. All rights reserved.
//
#import "MTWSaveViewController.h"
#import <GADBannerView.h>
#import <Twitter/Twitter.h>
#import "ALAssetsLibrary+CustomPhotoAlbum.h"
#import "MGInstagram.h"
#import <Social/Social.h>
#define kScreenWidth ([UIScreen mainScreen].bounds.size.width)
#define kScreenHeight ([UIScreen mainScreen].bounds.size.height)
@interface MTWSaveViewController () {
IBOutlet __weak UIActivityIndicatorView *indicatorView;
IBOutlet __weak UILabel *stateLabel;
UIImage *processedImage;
GADBannerView *bannerView;
BOOL displayAdview;
BOOL requestClose;
BOOL requestOpenActionSheet;
BOOL requestInstagram;
BOOL hasDisplay;
}
@end
@implementation MTWSaveViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
requestClose=NO;
displayAdview=NO;
requestOpenActionSheet=NO;
requestInstagram=NO;
hasDisplay=NO;
_saveDelayTime=3.0f;
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
if (!self.bought) {
bannerView=[[GADBannerView alloc]initWithAdSize:kGADAdSizeMediumRectangle];
bannerView.center=CGPointMake(kScreenWidth/2.0f, kScreenHeight/2.0f);
bannerView.adUnitID=self.admobPublishID;
bannerView.rootViewController=self;
bannerView.delegate=self;
[self.view addSubview:bannerView];
GADRequest *request=[GADRequest request];
//request.testDevices = [NSArray arrayWithObjects:@"09f93dda5b568219e2fb957f52f21791", nil];
[bannerView loadRequest:request];
}
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[[UIApplication sharedApplication]setStatusBarHidden:YES];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if (!hasDisplay) {
hasDisplay=YES;
UIActionSheet *actionSheet=[[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", @"ActionSheet Cancel") destructiveButtonTitle:nil otherButtonTitles:NSLocalizedString(@"Save to Photo Album", @"Save to Photo Album"), @"Instagram", @"Twitter", @"Facebook", nil];
[actionSheet showInView:self.view];
}
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)closeViewController
{
requestClose=YES;
if (!displayAdview) {
[self dismissViewControllerAnimated:YES completion:nil];
requestClose=NO;
}
}
- (void)processImage
{
processedImage=self.getFinalImage();
sleep(self.saveDelayTime);
}
#pragma mark UIActionSheet Delegate
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
switch (buttonIndex) {
case 0:
[self shareToPhotoAlbum];
break;
case 1:
[self shareToInstagram];
break;
case 2:
[self shareToTwitter];
break;
case 3:
[self shareToFacebook];
break;
case 4:
[self closeViewController];
break;
default:
break;
}
}
#pragma mark ShareTo
- (void)shareToPhotoAlbum
{
stateLabel.hidden=NO;
indicatorView.hidden=NO;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self processImage];
dispatch_async(dispatch_get_main_queue(), ^{
stateLabel.text=@"Saving";
ALAssetsLibrary *assetsLibrary=[[ALAssetsLibrary alloc]init];
[assetsLibrary saveImage:processedImage withOrientation:processedImage.imageOrientation toAlbum:self.albumName withCompletionBlock:^(NSError *error){
if (error) {
stateLabel.text=@"Save Failed";
} else {
stateLabel.text=@"Save Success";
}
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
sleep(2.0f);
dispatch_async(dispatch_get_main_queue(), ^{
[self closeViewController];
});
});
}];
});
});
}
- (void)shareToInstagram
{
stateLabel.hidden=NO;
indicatorView.hidden=NO;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self processImage];
dispatch_async(dispatch_get_main_queue(), ^{
if ([MGInstagram isAppInstalled]&&[MGInstagram isImageCorrectSize:processedImage]) {
[MGInstagram postImage:processedImage inView:self.view delegate:self];
} else {
stateLabel.text=@"Send Failed";
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
sleep(2.0f);
dispatch_async(dispatch_get_main_queue(), ^{
[self closeViewController];
});
});
}
});
});
}
- (void)shareToTwitter
{
stateLabel.hidden=NO;
indicatorView.hidden=NO;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self processImage];
dispatch_async(dispatch_get_main_queue(), ^{
SLComposeViewController *twitter=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[twitter addImage:processedImage];
twitter.completionHandler=^(SLComposeViewControllerResult result){
[self dismissViewControllerAnimated:YES completion:^{
[self dismissViewControllerAnimated:YES completion:nil];
}];
};
[self presentViewController:twitter animated:YES completion:nil];
});
});
}
- (void)shareToFacebook
{
stateLabel.hidden=NO;
indicatorView.hidden=NO;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self processImage];
dispatch_async(dispatch_get_main_queue(), ^{
SLComposeViewController *twitter=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[twitter addImage:processedImage];
twitter.completionHandler=^(SLComposeViewControllerResult result){
[self dismissViewControllerAnimated:YES completion:^{
[self dismissViewControllerAnimated:YES completion:nil];
}];
};
[self presentViewController:twitter animated:YES completion:nil];
});
});
}
- (void)adView:(GADBannerView *)view didFailToReceiveAdWithError:(GADRequestError *)error
{
NSLog(@"%@",error);
}
- (void)adViewDidReceiveAd:(GADBannerView *)view
{
NSLog(@"%@",NSStringFromSelector(_cmd));
}
- (void)adViewWillPresentScreen:(GADBannerView *)adView
{
displayAdview=YES;
}
- (void)adViewDidDismissScreen:(GADBannerView *)adView
{
if (requestClose) {
self.view.userInteractionEnabled=NO;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
sleep(2);
dispatch_async(dispatch_get_main_queue(), ^{
[self dismissViewControllerAnimated:YES completion:nil];
});
});
}
if (requestOpenActionSheet) {
UIActionSheet *actionSheet=[[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", @"ActionSheet Cancel") destructiveButtonTitle:nil otherButtonTitles:NSLocalizedString(@"Save to Photo Album", @"Save to Photo Album"), @"Twitter", @"Facebook", nil];
[actionSheet showInView:self.view];
}
if (requestInstagram) {
[MGInstagram postImage:processedImage inView:self.view delegate:self];
}
displayAdview=NO;
requestClose=NO;
requestOpenActionSheet=NO;
requestInstagram=NO;
}
#pragma mark MGInstagram Delegate
- (void)mgMenuWillDismiss
{
[self closeViewController];
}
- (void)mgMenuWillPresent
{
NSLog(@"%@",NSStringFromSelector(_cmd));
if (displayAdview) {
requestInstagram=YES;
}
}
@end