Tagged Questions
0
votes
0answers
327 views
Unbalanced calls to begin/end appearance transitions for <UINavigationController:
I am trying to send mail trough Xcode.
Here is my code
Code
Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
if (mailClass != nil)
{
BOOL var=[mailClass ...
1
vote
1answer
165 views
MFMailComposeViewController hangs app on iOS 4.3
I used the code below to send mail:
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"my title"];
...
1
vote
0answers
431 views
MFMailComposeViewController customize send button
I need to be able to change both the background color and the title color for the UIBarButtonItem "Send" on the MFMailComposeViewController.
Changing the customView property force it no longer to ...
0
votes
1answer
176 views
Has any image size limitation for image send to mail in ios application?
I am new in ios development .Now i am trying to develop an ipad application .In my application sent an image to mail,the image means a uiview and converted to uiimage with the following code and sent ...
6
votes
1answer
259 views
Preventing MFMailComposeViewController from scaling animated GIFs
I'm attaching an animated GIF to an email to be sent with MFMailComposeViewController. If the GIF is of sufficient size the MFMailComposeViewController will ask the user whether they want to resize ...
1
vote
0answers
351 views
MFMailComposeViewController iOS 4.0
When sending an email with a picture attachment in iOS4, the last step asks if you want to reduce the message size by scaling the image. Is it possible to force the app to send the highest resolution ...
2
votes
1answer
3k views
MFMessageComposeViewController alloc returns nil
In my application, MFMailComposeViewController works fine but creating a new instance of MFMessageComposeViewController fails.
Here is the code for both:
-( IBAction)sendSMS: (id)sender
{
...