Thumb Recognition in iOS Native App - objective-c

I want to use Thumb Recognition in my iOS app instead of login (username and password). Can we achieve this behavior in iOS7 for iPhone5s and iPhone5c?
Please give some direction if any one work over it.
If I am thinking in wrong direction then you can also correct me.
Thanks in advance.

You can't. There is no public Touch ID API for third party developers in iOS 7.

You cannot Use this. Because API is not public for developers.

Related

Embed Facebook Video in iOS

is it possible to embed a Facebook Video in a iOS application?
I have searched all over the internet without getting any answer to this question.
please could anyone help with the above problem
Thank you
is it possible to embed a Facebook Video in a iOS application?
YES, I suppose.
Please refer to Facebook's Graph-API documentation here:
And choose iOS SDK:
https://developers.facebook.com/docs/graph-api/reference/video
Yes it is possible in ios, not matter you use objective c or swift.
Link : https://developers.facebook.com/docs/plugins/embedded-video-player

How can we achieve coverflow view in android titanium?

I have seen that titanium support CoverFlowView in titanium but it works only on ios, Can anyone have idea to achieve CoverFlow in android with titanium
Thanks in advance
Looks like you are in luck! Someone already built a coverflow module for Android using the Android development environment.
https://github.com/moondroid/CoverFlow
You need to be willing to write the additional code for that to turn it into a module for Titanium.
http://docs.appcelerator.com/titanium/3.0/#!/guide/Android_Module_Development_Guide
It should be possible, but I must admit I've never tried to write one myself.
Basically you cannot get Coverflow on Android. Since it is a native iOs component which is not implemented in Android at all. Frameworks like Titanium always "link" your commands to internal system APIs. When there is no API there is no way to access it. Of course you could try to build it on your own but I think this would not work that well. And its a lot of work!
Additionally cover flow is not really useful (except for holding just a few items). Have a look at my question at ux.stackexchange.

Implementing Google AdMob to iOS app

As shown in the picture I'm having issues implementing Google AdMob into my app. Yes I am new to this and I figured using this site would be a good to learn. Since you guy's answer quickly.
http://i601.photobucket.com/albums/tt93/masterhomieg/Screenshots/ScreenShot2014-05-13at63814PM_zps64ec9cb6.png
put #"" around the string like this:
self.adBanner.adUnitID= #"ca-app-pub-689930294...";

How to launch an APP in background in iOS 6.x silently

We want to launch an APP silently in iPhone without bring this APP to the Foreground. In iOS 5.x we achieve this goal by this code:
[(SBApplication*)app setDisplaySetting:0x4 flag:NO];
[(SBDisplayStack*)displayStack pushDisplay:app];
[(SBDisplayStack*)displayStack popDisplay:app];
But, in iOS 6.x there is not SBDisplayStack any more. I did some search but not found any answers. Someone says that SBWorkSpace replaces the SBDisplayStack in iOS 6.x. We use SBAppToAppWorkspaceTransaction to implement but always bring the APP to the Foreground which dose not achieve our goal.
Anyone can help me? Thx!
You can use the SBSLaunchApplicationWithIdentifier() function from the SpringBoardServices private framework. It takes a suspended argument:
SBSLaunchApplicationWithIdentifier(CFSTR("com.company.app"), TRUE);
You'll also need the com.apple.springboard.launchapplications entitlement for this.

iphone sdk - Itunes connect how to change device requirements?

What is it im supposed to set in the plist so that it shows that it does not work on the ipad on itunes?
its somthing to do with this http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedFeatures/AdvancedFeatures.html but I dont see anything that seems appropriate?
Im still kind of noobish so I'd appreciate a really simple answer or as simple as possible.
Thanks for your time
In Project Settings -> Build tab, Deployment category, Targeted Device Family.