It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to have following functionality in my app: When a notification comes the app should use the message in it. From that message app should get the NSDate type string and show a particular view only on that that by using in if condition. Please suggest me how can I do so?
You can use the following code to retrieve the message you are getting from server
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
NSLog(#"user info%#",userInfo); }
after getting the messages you can put various condition on your different messages you are getting from server
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am developing an app in which i have to send email using MFMailComposeViewController to multiple user selecting from contact list.When I send email once it goes but when i do it second time I get following warning: Attempt to present on while a presentation is in progress!.Please let me know whats the issue here.
Thanks.
A kind of communication issue between parent-child .That means you are trying to present MFMailComposeViewController, without dismissing the previous.
Well, I can't explain further without looking at your code.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am looking to implement the ShareSdk for an iOS app. And it needs these parameters:
#define SHKFacebookUseSessionProxy NO
#define SHKFacebookKey #""
#define SHKFacebookSecret #""
#define SHKFacebookSessionProxyURL #""
And provides this url where to get it:
http://www.facebook.com/developers
But I am not finding how to get those parameters there. Would anyone be able to explain the steps to get those parameters?
Thanks,
Alex
Go to Facebook Apps Page, create a new app, get your keys.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want let users make calls through my app. Is there a way to hide the number being called, so that the privacy is protected?
Thanks
I don't think that this is possible, as it could be used for malicious purposes.
If you want the privacy of the person making the call to be hidden, you can use a *67 prefix on the number when you dial. Basically, just add *67 to the beginning of the number. Most US carriers support this.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Hi friends I am developing an application to display push notification.I would Like to know weather it is Chargeable Push Notification Essential.
RIM charges based on the frequency and size of the push data, and the number of clients being pushed to. When you apply for push credetials the limitations and cost of each type of account are explained. Current information is available from the Push Service site.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
1.We have opened app.
2.Then we hide it.
3.Then we repair it .
4.And after that action i need to update page.
how can i realize it?
There are two possibilities for this:
1) When reactivated, the method applicationDidBecomeActive: in your application delegate will be called. Note that this will also be called when the app is being started for the first time.
2) An UIApplicationDidBecomeActiveNotification is being posted to the notification center. Objects (views) that need to react to that may register for that notification. I think this would probably the way to go for your case: register for this notification in the view that needs to be reloaded. Registering for notifications is handled in Notification Programming Topics - Registering for Notifications