| bio | website | sambaumgarten.me |
|---|---|---|
| location | Palo Alto, CA | |
| age | 14 | |
| visits | member for | 1 year, 11 months |
| seen | 2 days ago | |
| stats | profile views | 177 |
|
Dec 20 |
awarded | Self-Learner |
|
Nov 28 |
comment |
How to integrate Juggernaut chat server (Powered by ruby on rails) with iPhone/Android app for real time chat? Ok, Thanks for the feedback. I'm fairly new to stackoverflow. |
|
Nov 28 |
awarded | Revival |
|
Nov 24 |
answered | How to integrate Juggernaut chat server (Powered by ruby on rails) with iPhone/Android app for real time chat? |
|
Nov 24 |
comment |
How to Increase Font Size in the xcode editor? Seems ridiculous how Apple is rejecting apps because they don't follow the Human Interface Guidelines and Apples violating them themselves. |
|
Nov 24 |
answered | Is there a way to get the magic mouse or MacBook Pro trackpad to work with the iphone simulator? |
|
Nov 24 |
awarded | Critic |
|
Nov 12 |
awarded | Notable Question |
|
Nov 10 |
comment |
In-app purchase 'SKProductsRequest' failing to produce a successful response Just saw the comment on the other answer. That answers this in much simpler terms. It seems much simpler to use a NSSet. I will use that in the future |
|
Nov 10 |
answered | In-app purchase 'SKProductsRequest' failing to produce a successful response |
|
Nov 10 |
answered | In-app purchase testing issue |
|
Sep 20 |
awarded | Popular Question |
|
Sep 10 |
accepted | Send data from php to javascript on a different users computer |
|
Sep 10 |
comment |
Send data from php to javascript on a different users computer Nice Answer Im about to accept |
|
Sep 10 |
asked | Send data from php to javascript on a different users computer |
|
Sep 10 |
accepted | Set UISlider.value to AVPlayer.currentTime |
|
Aug 24 |
accepted | Objects added as subview to scrollview are not showing up |
|
Aug 23 |
comment |
iPhone MFMailComposeViewController cuts off text You need to use this code to make it work: MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
if ([MFMailComposeViewController canSendMail]) {
//Setting up the Subject, recipients, and message body.
[mail setToRecipients:[NSArray arrayWithObjects:@"email@email.com",nil]];
[mail setSubject:@"Subject of Email"];
[mail setMessageBody:@"Message of email" isHTML:NO];
//Present the mail view controller
[self presentModalViewController:mail animated:YES];
You have to add it to self and not to a view |
|
Aug 23 |
comment |
iPhone MFMailComposeViewController cuts off text See My Answer Bellow |
|
Aug 23 |
comment |
iPhone MFMailComposeViewController cuts off text How are you opening the MFMailComposeViewController |