Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum

Thread: email and save
View Single Post
Old 09-04-2010, 04:51 AM   #2 (permalink)
ftwhere
Registered Member
 
Join Date: May 2010
Posts: 13
ftwhere is on a distinguished road
Default

so i got this scrollview gallery working and i want to be able to send the pictures by email, but it's only working for the image i setup ...how can i make it work for each of the images .... the code looks like this:
- (void)viewDidLoad
{
self.view.backgroundColor = [UIColor viewFlipsideBackgroundColor];
[scrollView setCanCancelContentTouches:NO];
scrollView.clipsToBounds = YES;
scrollView.scrollEnabled = YES;
scrollView.pagingEnabled = YES;
scrollView.showsHorizontalScrollIndicator = NO;

NSUInteger i;
for (i = 1; i <= kNumImages; i++)
{
NSString *imageName = [NSString stringWithFormat:@"item%d.png", i];
UIImage *image = [UIImage imageNamed:imageName];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];


CGRect rect = imageView.frame;
rect.size.height = kScrollObjHeight;
rect.size.width = kScrollObjWidth;
imageView.frame = rect;
imageView.tag = i;
[scrollView addSubview:imageView];
[imageView release];
}
[self layoutScrollImages];
}

................

and the attachment code:

NSString *path = [[NSBundle mainBundle] pathForResource:@"item1" ofType:@"png"];
NSData *myData = [NSData dataWithContentsOfFileath];
[MailComposer addAttachmentData:myData mimeType:@"image/png" fileName:@"item1"];

so what I want is instead of using item1 to be able to use the image that is displayed at the moment...


any ideas?

Last edited by ftwhere; 09-04-2010 at 04:55 AM.
ftwhere is offline   Reply With Quote
 

» Advertisements
» Online Users: 378
6 members and 372 guests
Absentia, dennisnederlof, Domele, ipodphone, Matl43Owa, Paul Slocum
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,579
Threads: 94,082
Posts: 402,769
Top Poster: BrianSlick (7,990)
Welcome to our newest member, breennorah
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 12:47 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.