Hey guys!
On the FlipsideView.h, I'm trying to make a UIButton, when clicked, open up Mail in order to send a message to an email address of mine.
I have gotten some code done: but I have "error: syntax error before "*" token"
Here's the code I have so far:
Anyone who can help me is appreciated! Thank you!
Sorry for being a noob- I'm still learning...
On the FlipsideView.h, I'm trying to make a UIButton, when clicked, open up Mail in order to send a message to an email address of mine.
I have gotten some code done: but I have "error: syntax error before "*" token"
Here's the code I have so far:
Code:
#import "FlipsideView.h"
@implementation FlipsideView
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
// Initialization code
}
return self;
}
- (void)drawRect:(CGRect)rect {
// Drawing code
}
- (IBAction) sendEmail: (id) sender
NSURL *url = [[NSURL alloc] initWithString:@"mailto:email@gmail.com?subject=myhouse&body=suggestion that I would like to see featured."];
[[UIApplication sharedApplication] openURL:url];
{
- (void)dealloc {
[super dealloc];
}
@end
Anyone who can help me is appreciated! Thank you!
Sorry for being a noob- I'm still learning...