Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am making an App where on the first screen i have login and register buttons. When i click on register it will ask for user finger prints and then user details. From here I want to store finger prints and user details in database.
And when he clicks on login. Its will open biometric scanner if finger prints matches the database finger prints he will move forward..
Is there any way is it possible to store finger prints in database. If so please give some reference links that guide me towards my goal..
Thanks in Advance
You can not access the fingerprints directly. This is restricted by Apple on purpose (privacy protection). So you will not be able to store them in your database neither.
Touch ID
Your app can now use Touch ID to authenticate a user before accessing some or all content in your app. Fingerprint data is protected and never accessed by iOS or other apps. [...]
Source: iOS 8 for Developers by Apple
Authentication is still possible using the API, but that will only return values like Authenticated and Not Authenticated, with no information about the fingerprint itself.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to deploy an iPhone app with names of things as part of the deployed app. The user will see the names after they log in successfully (using a standard existing login service that already exists.). However, I don't want the names accessible by someone who can decrypt the app. In other words, they could decrypt the app and get the strings. See Finding constants from a decrypted iOS app executable and Reverse Engineering Tools
How can I ship the names encrypted and then have the app decrypt it after they log in? It seems to me that whatever decrypting code I write/use would also be available to the person decrypting the app.
It'd be very nice if I didn't have to create a custom server solution just to send the app names once they are logged in. However, it may come to that.
Our top security person is going to be hitting this app hard. So, it has to be airtight security. So the answer in "Best way to securely ship static text inside a iOS app?" won't work.
Ideas?
Update: Can we pre-populate the keystore in iPhone and Android somehow with the secure information such that it cannot be hacked?
Encrypt the items prior to inclusion in the app and do not include the encryption key in the app. Instead pass the key to the app after the user correctly logs in.
Simply use AES encryption correctly, that will secure the data.
It is not important that the decryption method be secret, only that the decryption key be secret.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am new in iOS programming and I want to handle push notification to received it as a notification then i want to save it to database and display in table view how can I do that I try to handler it but I failed to do that can any one suggest any solution for that.
another problem i have log in page I want when program start check database if find accounts log in with the user in ns user default i made the method that return the number of the accounts all I need to make condition if account ==0 goto login page else open on tab bar menu
In Parse.com Docs navigate to cache. This is your answer. I'm assuming you know how to retrieve Parse data via a PFObject and Display it to a table already. It's the same, but instead from cache.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am working on creating ios app for iphone where users have an access to my wordpress site can only login to. My login address is www.example.com/wp-login.php How should I implement it? I am a beginner in ios development.
EDIT: The app will only show user's info and previously submitted forms. It will not show any other content from the website. Once user's are authorized they will be able to fill out new form and submit or see their previously submitted forms.
It depends what you want to do.
Normally we should not display only a Website content within a WebView, for this you can Use Safari and add a Basic Authentication to your Website.
Apps normally fetch content from a API on the Webserver to retrieve Content, parse the Data and then display it natively.
For Wordpress you can write your own Plugin for that, or use an existing one.
This for the Content:
https://wordpress.org/plugins/json-api/
And this Plugin provides authentication support for WP:
https://wordpress.org/plugins/json-api-auth/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm a totally beginner for IOS.
Recently, I found that Flipboard may embedded Facebook post
but I don't know how it do that.
Can anybody help me?
You can download the facebook API for android either as a .jar file or as complete source. After that you will have to create a facebook app on facebook which will be doing the task to get you data from facebook. Once you create a facebook app you will be given some oauth information which will be a key and a link I suppose. Copy those in your downloaded facebook API source and you are ready to go. Ask users their username and password for facebook via some textbox and send it to the facebook API code. You can also use facebook API's internal function to get user info which will be good for privacy concerns from user point of view.
After you have successfully coded everything...Voila...you'll have the news feed as data and you can show it to user the way u want.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to create iPhone app which is in background then it will track record of all app which user opens.
i.e when my app is in background and user opens music,safari,photo app
then i want record like, music,safari,photo.
can we write names in file ?
This cannot be done. Apple is very restrictive when it comes to things like this.
The way I understand it is this:
Apple limits the API to your app (you can't affect other apps or the OS in any major way-this stop malicious behaviour)
Your app is 'sandboxed' meaning it's on it's own, it can't see if Safari has any pages open, or monitor what game you just exited out of or anything like that. Your app is in effect, isolated.
You can write anything to a file, just getting what you want to write (in this case) is not possible
tl;dr. No, your app is in it's own little 'sandbox' it can't monitor anything but itself, Apple doesn't allow it nor do they provide any programming library to do so.