Does any one know how to implement In App SMS functionality in iPhone SDK 4.0
Sandy
In order to not violate NDA, I direct you to read about this class, and ask about it in Apple's Developer Forums.
Related
I'm looking to start to develop an iPhone app, and I'm looking for if I can have access to the NFC chip. I've read when the iPhone 6 was released that the NFC was not able for the developers
Thanks
For what I've seen.. looks like still is being available just for apple pay.
CoreNFC is introduced in iOS 11 SDK for reading NFC Tags
Apple Documentation of CoreNFC
for more information:
CoreNFC for card emulation?
I want to develop an iPhone/iPad app with siri support.Is it really possible ? Can anybody please help me
Previous Answer : You can't access Siri features, Apple didn't provide public API for Siri :-S .
The best APIs I've seen is the Openears
the tutorials for openears are available here Tutorials
and second one is Dragon Mobile SDK
New Answer as per update in SDK :
Now Siri is officially available.
Regarding Siri integration in iOS apps, the iOS 10 states that the "Siri" support should only be added if an app implements one of the following types of services:
Audio or video calling
Messaging
Payments
Searching photos
Workouts
Ride booking
The apps integrate with Siri through these specific domains only (restriction by Apple), which define categories of behaviors that an app can support.
By limiting the scope of Siri in iOS 10, Apple has standardized the integration.
What is the best way to tweet from an iPhone app?
I know there are some libraries to integrate twitter in an iPhone app like MGTwitterEngine, do I really need it just to sent a tweet?
And what is OAuth? is MGTwitterEngine already include OAuth??
Can someone tell me what are the steps I need to do from start?
The app is for ios 4, so using the new twitter framework in ios 5 is not good for me..
If you are using iOS 5 there is a whole Twitter Framework built in. Otherwise you will have to use a third party library to do this.
https://developer.apple.com/library/ios/#documentation/Twitter/Reference/TwitterFrameworkReference/_index.html#//apple_ref/doc/uid/TP40011014
UPDATE
Please also do note that Apple will no longer accept anything that can not run on iPhone 5, so you will have to be use iOS 6 SDK or later anyway
Is there any cross-platform in app purchase solution for PhoneGap based apps? I've seen a PayPal plugin for Android/iOS (https://github.com/purplecabbage/phonegap-plugins/blob/master/iPhone/PayPalPlugin/README.md).
But does that plugin "break the ios and android rules"? I mean, with paypal we skip the 30% that goes to apple and google, is that correct? Isn't that a risk for the iphone app certification process?
thanks!
You might want to have a look at this similar SO question. And I'd say the answer is yes, there are solutions.
Apple will reject this, you can only use Apple's IAP system in iOS apps.
For android there aren't rules like these so you will be fine.
I would like to have a feature in my iphone application that would start playing a file in my ipod section of the iphone. Does the SDK allow calls to this? Is there a simple way to start a song from my application other than using the iphones native interface?
No, I think the official iPhone OS 2.0 SDK does not allow this.
You cannot launch the iPod app from your application. But you can easily play a song.
Use the AVAudioPlayer from the AVFoundation Framework.
Ars Technica has a nice article on it, here.
This is now possible with 3.0 but I will not go further into it due to NDA issues. The information is available on the Developer Site.
Now that it's public, you're looking for MPMediaPickerController and MPMediaPickerControllerDelegate
http://developer.apple.com/iphone/library/documentation/MediaPlayer/Reference/MPMediaPickerController_ClassReference/Reference/Reference.html
Nope you cannot fire off a song from your media library but you can play a song you have embedded in you app or you download from the web here are some examples
Apple - Example
AppsAmuck - Example