Skip to content

Commit

Permalink
Use a share panel on iOS 6, and an action sheet with copy/tweet/brows…
Browse files Browse the repository at this point in the history
…er on iOS 5
  • Loading branch information
c99koder committed Jul 2, 2013
1 parent 1e30c63 commit cd39645
Show file tree
Hide file tree
Showing 35 changed files with 466 additions and 48 deletions.
29 changes: 29 additions & 0 deletions ARChromeActivity/ARChromeActivity.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
ARChromeActivity.h
Copyright (c) 2012 Alex Robinson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


#import <UIKit/UIKit.h>

@interface ARChromeActivity : UIActivity

// Empty by default. Either set this in the initializer, or set this property.
@property (strong, nonatomic) NSURL *callbackURL;

// Uses the "CFBundleName" from your Info.plist by default.
@property (strong, nonatomic) NSString *callbackSource;

// The text beneath the icon. Defaults to "Chrome".
@property (strong, nonatomic) NSString *activityTitle;

- (id)initWithCallbackURL:(NSURL *)callbackURL;

@end
79 changes: 79 additions & 0 deletions ARChromeActivity/ARChromeActivity.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
ARChromeActivity.m
Copyright (c) 2012 Alex Robinson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


#import "ARChromeActivity.h"

@implementation ARChromeActivity {
NSURL *_activityURL;
}

@synthesize callbackURL = _callbackURL;
@synthesize callbackSource = _callbackSource;
@synthesize activityTitle = _activityTitle;

- (void)commonInit {
_callbackSource = [[NSBundle mainBundle]objectForInfoDictionaryKey:@"CFBundleName"];
_activityTitle = @"Chrome";
}

- (id)init {
self = [super init];
if (self) {
[self commonInit];
}
return self;
}

- (id)initWithCallbackURL:(NSURL *)callbackURL {
self = [super init];
if (self) {
[self commonInit];
_callbackURL = callbackURL;
}
return self;
}

- (UIImage *)activityImage {
return [UIImage imageNamed:@"ARChromeActivity"];
}

- (NSString *)activityType {
return NSStringFromClass([self class]);
}

- (BOOL)canPerformWithActivityItems:(NSArray *)activityItems {
return [[activityItems lastObject] isKindOfClass:[NSURL class]] && [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"googlechrome-x-callback://"]];
}

- (void)prepareWithActivityItems:(NSArray *)activityItems {
_activityURL = [activityItems lastObject];
}

- (void)performActivity {

NSString *openingURL = [_activityURL.absoluteString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *callbackURL = [self.callbackURL.absoluteString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *sourceName = [self.callbackSource stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURL *activityURL = [NSURL URLWithString:
[NSString stringWithFormat:@"googlechrome-x-callback://x-callback-url/open/?url=%@&x-success=%@&x-source=%@",
openingURL,
callbackURL,
sourceName]];

[[UIApplication sharedApplication] openURL:activityURL];

[self activityDidFinish:YES];
}

@end
Binary file added ARChromeActivity/ARChromeActivity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ARChromeActivity/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ARChromeActivity/ARChromeActivity@2x~ipad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ARChromeActivity/ARChromeActivity~ipad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
130 changes: 130 additions & 0 deletions IRCCloud.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@
224D00A7173C185B00500D70 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 224D00A5173C185B00500D70 /* [email protected] */; };
224D00A9173C188100500D70 /* add.png in Resources */ = {isa = PBXBuildFile; fileRef = 224D00A8173C188100500D70 /* add.png */; };
224D00AA173C188100500D70 /* add.png in Resources */ = {isa = PBXBuildFile; fileRef = 224D00A8173C188100500D70 /* add.png */; };
22501740178340AB00066E71 /* Twitter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2250173F178340AB00066E71 /* Twitter.framework */; };
225017631783434900066E71 /* ARChromeActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 225017431783434800066E71 /* ARChromeActivity.m */; };
225017641783434900066E71 /* ARChromeActivity.png in Resources */ = {isa = PBXBuildFile; fileRef = 225017441783434800066E71 /* ARChromeActivity.png */; };
225017651783434900066E71 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 225017451783434800066E71 /* [email protected] */; };
225017661783434900066E71 /* ARChromeActivity@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 225017461783434800066E71 /* ARChromeActivity@2x~ipad.png */; };
225017671783434900066E71 /* ARChromeActivity~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 225017471783434800066E71 /* ARChromeActivity~ipad.png */; };
225017681783434900066E71 /* TUSafariActivity.strings in Resources */ = {isa = PBXBuildFile; fileRef = 225017491783434800066E71 /* TUSafariActivity.strings */; };
225017691783434900066E71 /* Safari.png in Resources */ = {isa = PBXBuildFile; fileRef = 225017591783434900066E71 /* Safari.png */; };
2250176A1783434900066E71 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 2250175A1783434900066E71 /* [email protected] */; };
2250176B1783434900066E71 /* Safari@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 2250175B1783434900066E71 /* Safari@2x~ipad.png */; };
2250176C1783434900066E71 /* Safari~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 2250175C1783434900066E71 /* Safari~ipad.png */; };
2250176D1783434900066E71 /* TUSafariActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 225017601783434900066E71 /* TUSafariActivity.m */; };
2253BA251770CD7200CCA77F /* ChannelListTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2253BA241770CD7100CCA77F /* ChannelListTableViewController.m */; };
22695F5516E8FC9900E01DF8 /* CollapsedEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 22695F5416E8FC9800E01DF8 /* CollapsedEvents.m */; };
22695F5616E8FC9900E01DF8 /* CollapsedEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 22695F5416E8FC9800E01DF8 /* CollapsedEvents.m */; };
Expand Down Expand Up @@ -255,6 +267,38 @@
2248DF3816EE375D0086BB42 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
224D00A5173C185B00500D70 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
224D00A8173C188100500D70 /* add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = add.png; sourceTree = "<group>"; };
2250173F178340AB00066E71 /* Twitter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Twitter.framework; path = System/Library/Frameworks/Twitter.framework; sourceTree = SDKROOT; };
225017421783434800066E71 /* ARChromeActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARChromeActivity.h; sourceTree = "<group>"; };
225017431783434800066E71 /* ARChromeActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARChromeActivity.m; sourceTree = "<group>"; };
225017441783434800066E71 /* ARChromeActivity.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ARChromeActivity.png; sourceTree = "<group>"; };
225017451783434800066E71 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
225017461783434800066E71 /* ARChromeActivity@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ARChromeActivity@2x~ipad.png"; sourceTree = "<group>"; };
225017471783434800066E71 /* ARChromeActivity~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ARChromeActivity~ipad.png"; sourceTree = "<group>"; };
2250174A1783434800066E71 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250174B1783434800066E71 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250174C1783434800066E71 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250174D1783434800066E71 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250174E1783434800066E71 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250174F1783434800066E71 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017501783434800066E71 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017511783434900066E71 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017521783434900066E71 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017531783434900066E71 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017541783434900066E71 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017551783434900066E71 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017561783434900066E71 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017571783434900066E71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017581783434900066E71 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017591783434900066E71 /* Safari.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Safari.png; sourceTree = "<group>"; };
2250175A1783434900066E71 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2250175B1783434900066E71 /* Safari@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Safari@2x~ipad.png"; sourceTree = "<group>"; };
2250175C1783434900066E71 /* Safari~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Safari~ipad.png"; sourceTree = "<group>"; };
2250175D1783434900066E71 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250175E1783434900066E71 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2250175F1783434900066E71 /* TUSafariActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TUSafariActivity.h; sourceTree = "<group>"; };
225017601783434900066E71 /* TUSafariActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TUSafariActivity.m; sourceTree = "<group>"; };
225017611783434900066E71 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
225017621783434900066E71 /* zh_CN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = zh_CN; path = zh_CN.lproj/TUSafariActivity.strings; sourceTree = "<group>"; };
2253BA241770CD7100CCA77F /* ChannelListTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelListTableViewController.m; sourceTree = "<group>"; };
2253BA261770CDC500CCA77F /* ChannelListTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelListTableViewController.h; sourceTree = "<group>"; };
22695F5316E8FC9800E01DF8 /* CollapsedEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollapsedEvents.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -387,6 +431,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
22501740178340AB00066E71 /* Twitter.framework in Frameworks */,
22324FE0177DE51A008B6912 /* SystemConfiguration.framework in Frameworks */,
2223C6B61768F4500032544B /* ImageIO.framework in Frameworks */,
2230F8E51715E61F007F7C98 /* MobileCoreServices.framework in Frameworks */,
Expand Down Expand Up @@ -416,6 +461,33 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
225017411783434800066E71 /* ARChromeActivity */ = {
isa = PBXGroup;
children = (
225017421783434800066E71 /* ARChromeActivity.h */,
225017431783434800066E71 /* ARChromeActivity.m */,
225017441783434800066E71 /* ARChromeActivity.png */,
225017451783434800066E71 /* [email protected] */,
225017461783434800066E71 /* ARChromeActivity@2x~ipad.png */,
225017471783434800066E71 /* ARChromeActivity~ipad.png */,
);
path = ARChromeActivity;
sourceTree = SOURCE_ROOT;
};
225017481783434800066E71 /* TUSafariActivity */ = {
isa = PBXGroup;
children = (
225017491783434800066E71 /* TUSafariActivity.strings */,
225017591783434900066E71 /* Safari.png */,
2250175A1783434900066E71 /* [email protected] */,
2250175B1783434900066E71 /* Safari@2x~ipad.png */,
2250175C1783434900066E71 /* Safari~ipad.png */,
2250175F1783434900066E71 /* TUSafariActivity.h */,
225017601783434900066E71 /* TUSafariActivity.m */,
);
path = TUSafariActivity;
sourceTree = SOURCE_ROOT;
};
228A056316D3DABA0029769C = {
isa = PBXGroup;
children = (
Expand All @@ -439,6 +511,7 @@
228A056E16D3DABA0029769C /* Frameworks */ = {
isa = PBXGroup;
children = (
2250173F178340AB00066E71 /* Twitter.framework */,
22324FDF177DE51A008B6912 /* SystemConfiguration.framework */,
2223C6B51768F4500032544B /* ImageIO.framework */,
2230F8E41715E61F007F7C98 /* MobileCoreServices.framework */,
Expand Down Expand Up @@ -473,6 +546,8 @@
228A057616D3DABA0029769C /* Supporting Files */ = {
isa = PBXGroup;
children = (
225017411783434800066E71 /* ARChromeActivity */,
225017481783434800066E71 /* TUSafariActivity */,
2223C6AE1768F36F0032544B /* UIImage+animatedGIF.m */,
2223C6AF1768F36F0032544B /* UIImage+animatedGIF.h */,
2274F49D1756723F0039B4CB /* OpenInChromeController.h */,
Expand Down Expand Up @@ -748,6 +823,24 @@
hasScannedForEncodings = 0;
knownRegions = (
en,
cs,
de,
es,
eu,
fi,
fr,
it,
ja,
ko,
nl,
no,
pl,
pt,
ru,
sk,
sv,
vi,
zh_CN,
);
mainGroup = 228A056316D3DABA0029769C;
productRefGroup = 228A056D16D3DABA0029769C /* Products */;
Expand Down Expand Up @@ -808,6 +901,15 @@
22EBD362176CC3BD00E84DA4 /* [email protected] in Resources */,
22EBD364176CCE8600E84DA4 /* [email protected] in Resources */,
22EBD366176CCE9800E84DA4 /* send.png in Resources */,
225017641783434900066E71 /* ARChromeActivity.png in Resources */,
225017651783434900066E71 /* [email protected] in Resources */,
225017661783434900066E71 /* ARChromeActivity@2x~ipad.png in Resources */,
225017671783434900066E71 /* ARChromeActivity~ipad.png in Resources */,
225017681783434900066E71 /* TUSafariActivity.strings in Resources */,
225017691783434900066E71 /* Safari.png in Resources */,
2250176A1783434900066E71 /* [email protected] in Resources */,
2250176B1783434900066E71 /* Safari@2x~ipad.png in Resources */,
2250176C1783434900066E71 /* Safari~ipad.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -920,6 +1022,8 @@
221F0BC5177368B40008EE04 /* CallerIDTableViewController.m in Sources */,
22A1D0271778A86900F8A89C /* WhoisViewController.m in Sources */,
228EFBC8177B4F7300B83A4C /* DisplayOptionsViewController.m in Sources */,
225017631783434900066E71 /* ARChromeActivity.m in Sources */,
2250176D1783434900066E71 /* TUSafariActivity.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -987,6 +1091,32 @@
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
225017491783434800066E71 /* TUSafariActivity.strings */ = {
isa = PBXVariantGroup;
children = (
2250174A1783434800066E71 /* cs */,
2250174B1783434800066E71 /* de */,
2250174C1783434800066E71 /* en */,
2250174D1783434800066E71 /* es */,
2250174E1783434800066E71 /* eu */,
2250174F1783434800066E71 /* fi */,
225017501783434800066E71 /* fr */,
225017511783434900066E71 /* it */,
225017521783434900066E71 /* ja */,
225017531783434900066E71 /* ko */,
225017541783434900066E71 /* nl */,
225017551783434900066E71 /* no */,
225017561783434900066E71 /* pl */,
225017571783434900066E71 /* pt */,
225017581783434900066E71 /* ru */,
2250175D1783434900066E71 /* sk */,
2250175E1783434900066E71 /* sv */,
225017611783434900066E71 /* vi */,
225017621783434900066E71 /* zh_CN */,
);
name = TUSafariActivity.strings;
sourceTree = "<group>";
};
228A057816D3DABA0029769C /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
Expand Down
6 changes: 4 additions & 2 deletions IRCCloud/Classes/ImageViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@
//

#import <UIKit/UIKit.h>
#import "OpenInChromeController.h"

@interface ImageViewController : UIViewController<UIScrollViewDelegate> {
@interface ImageViewController : UIViewController<UIScrollViewDelegate,UIActionSheetDelegate> {
IBOutlet UIImageView *_imageView;
IBOutlet UIScrollView *_scrollView;
IBOutlet UIActivityIndicatorView *_activityView;
IBOutlet UIToolbar *_toolbar;
NSURL *_url;
NSTimer *_hideTimer;
OpenInChromeController *_chrome;
}
-(id)initWithURL:(NSURL *)url;
-(IBAction)viewTapped:(id)sender;
-(IBAction)openInBrowser:(id)sender;
-(IBAction)doneButtonPressed:(id)sender;
-(IBAction)shareButtonPressed:(id)sender;
@end
Loading

0 comments on commit cd39645

Please sign in to comment.