Discussion Forums  >  Plugins, Customizing, Source Code

Replies: 15    Views: 98

GoNorthWest
buzztouch Evangelist
Profile
Posts: 8197
Reg: Jun 24, 2011
Oro Valley, AZ
1,000,000
10/07/14 11:01 AM (9 years ago)

Email Image Plugin Updated for iOS 8

Hello! With many thanks to the amazing David Book, the Email Image plugin has been updated to deal with iOS 8. It fixed a bug that people were reporting, and appears to be working correctly. Please let me know if you find any issues. https://www.buzztouch.com/plugins/plugin.php?pid=A9C6C1CF0FEE84403C554B8 Thanks! Mark
 
SheriDee
Code is Art
Profile
Posts: 1094
Reg: Sep 23, 2011
location unknow...
22,840
like
10/07/14 12:00 PM (9 years ago)
Thanks Mark :)
 
MacApple
Apple Fan
Profile
Posts: 4675
Reg: Oct 25, 2010
USA
61,150
like
10/07/14 04:15 PM (9 years ago)
Good man MrMark.
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
10/07/14 04:46 PM (9 years ago)
Cheers! -- Smug
 
Niraj
buzztouch Evangelist
Profile
Posts: 2943
Reg: Jul 11, 2012
Cerritos
37,930
like
10/07/14 04:52 PM (9 years ago)
Swell ! -- Niraj
 
0z2000tv
Aspiring developer
Profile
Posts: 315
Reg: Sep 10, 2011
Nashville
11,950
like
10/08/14 12:51 PM (9 years ago)
Hello Mark, I placed Email Image Plugin in a Tabbed iOS App this morning. When the app loaded and Tab One came up (Hangman Plugin) I was asked if I wanted to load an image (rows from your plugin at bottom of screen) I selected cancel and both rows disappeared and the app worked fine. Unable to pre-load emailto: or Subject: from BT Control Panel. I added it to JSON and it seemed to work ok. I deleted your plugin in from the app and all is well. I downloaded the package this morning. Am I doing something incorrectly? I Hope this is helpful. Thanks Mark. Mike
 
GoNorthWest
buzztouch Evangelist
Profile
Posts: 8197
Reg: Jun 24, 2011
Oro Valley, AZ
1,000,000
like
10/08/14 10:48 PM (9 years ago)
Hey Mike, Tanks for the testing...I'll check it out! Adding the preload email addresses via JSON is the way it works. Mark
 
Sherry
Lost but trying
Profile
Posts: 135
Reg: Jan 05, 2013
South Africa
11,650
like
11/28/14 02:29 PM (9 years ago)
Hi Mark I was testing the Email Image plugin on my new app today with 2 ipads one with ios7.1.1 and other with ios 8.1.1. The ios7 ipad works 100% but having a problem with the ios 8 one. When I open the plugin it comes up correctly with menu Choose Image, Take New Image and Cancel, but if I click on either Choose Image or Take New Image it just thinks for a second and then brings the menu up again but doesn't load/open anything. I have Email Image ver 1.4 installed on a self host server.
 
GoNorthWest
buzztouch Evangelist
Profile
Posts: 8197
Reg: Jun 24, 2011
Oro Valley, AZ
1,000,000
like
11/28/14 07:26 PM (9 years ago)
Hi Sherry, I'll look into it! Might be a few days, but hopefully we can get it nailed down. Thanks, Mark
 
Sherry
Lost but trying
Profile
Posts: 135
Reg: Jan 05, 2013
South Africa
11,650
like
11/29/14 02:08 PM (9 years ago)
Thanks Mark I have a separate app which was compiled a few months back on xcode 5.1.1 for ios 7.1 but am running it on the same ios 8 Ipad without any issues. The problems i'm experiencing both with this plugin and the pdf plugin email window not closing have only started since xcode 6 and it makes no difference if i compile for 7.1 or 8 via xcode 6 the apps on ios8 ipad have these bugs but ipad with ios7 works fine.
 
Sherry
Lost but trying
Profile
Posts: 135
Reg: Jan 05, 2013
South Africa
11,650
like
11/30/14 05:02 AM (9 years ago)
Thanks Mark I have a separate app which was compiled a few months back on xcode 5.1.1 for ios 7.1 but am running it on the same ios 8 Ipad without any issues. The problems i'm experiencing both with this plugin and the pdf plugin email window not closing have only started since xcode 6 and it makes no difference if i compile for 7.1 or 8 via xcode 6 the apps on ios8 ipad have these bugs but ipad with ios7 works fine.
 
GoNorthWest
buzztouch Evangelist
Profile
Posts: 8197
Reg: Jun 24, 2011
Oro Valley, AZ
1,000,000
like
01/09/15 11:05 PM (9 years ago)
Hello, I just ran an app with this plugin using Xcode 6.1.1 and the iPhone 5s (iOS 8.1) simulator and didn't have any issues. In addition, I have it running on my actual phone with the same iOS level, and haven't experienced any problems. So, as far as I can tell, it's working correctly. If you're still having issues, can you provide me some output from the debug console so I can see what Xcode might be complaining about? Thanks! Mark
 
Sherry
Lost but trying
Profile
Posts: 135
Reg: Jan 05, 2013
South Africa
11,650
like
03/06/15 05:41 AM (9 years ago)
I thought I'd give a quick update on this. It's working perfectly since upgrading xcode to 6.1.1 I was on an earlier version of xcode 6 think it was 6.0.3 when I had all the issues with this and the email plugin but xcode 6.1.1 seems to have sorted out both of these bugs. Thanks Mark for your assistance.
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
05/15/15 09:18 PM (9 years ago)
hmm... I'm having a similar issue... in my iPhone 4, with 7.1.2, no problems. With my iPad mini, running v8.3, it just keeps showing the 'take image/choose image' menu... So I did some snooping, and found that there is an issue when calling an alert type view from an another alert type view. The answer is to place it in a separate block process... such as: [[NSOperationQueue mainQueue] addOperationWithBlock:^{ // your code goes here... }]; So, I'm still playing with it a little but this seems to work 'so far'... // after [self.bgImage setHidden:YES]; // I put this: [[NSOperationQueue mainQueue] addOperationWithBlock:^{ CGRect rect = CGRectMake(self.view.bounds.size.width / 2, self.view.bounds.size.height / 2, 1, 1); popover = [[UIPopoverController alloc] initWithContentViewController:imgPicker]; [popover setDelegate:self]; [popover presentPopoverFromRect:rect inView:self.view permittedArrowDirections:0 animated:YES]; }]; and I did something similar for taking a new photo... same successful results. Hope this helps! Cheers! -- Smug
 
GoNorthWest
buzztouch Evangelist
Profile
Posts: 8197
Reg: Jun 24, 2011
Oro Valley, AZ
1,000,000
like
05/15/15 10:05 PM (9 years ago)
You rock, Smug! Thanks! Mark
 
farcat
buzztouch Evangelist
Profile
Posts: 1008
Reg: Jan 27, 2012
France
13,230
like
09/08/15 12:59 PM (8 years ago)
Thanks Smug and Mark, this is a life saver ! Just a quick addition, there are two instances of: // after [self.bgImage setHidden:YES]; The first one seems to relate to picking up an existing photo, the second to take a new photo. The code kindly given by Smug needs to be added under both instances for the plugin to work fully. Cheers, Farcat
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.