Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

api for showing native calculator in iOS app

Tags:

iphone

ios4

ios5

I have to create app which has requirement to integrate calculator. I want to know that is there any api which will show a calculator. or i have to create the calculator?

I searched on google but it was showing me calculator application.

Thanks in advance

like image 996
KodeKiller Avatar asked Nov 04 '11 06:11

KodeKiller


2 Answers

NO, You have create the calculator and integrate it with application

like image 86
Rahul Juyal Avatar answered Sep 20 '22 06:09

Rahul Juyal


I don't believe there is any particular API for interacting with the built-in calculator.

You are also unable to launch other applications from within your application, unless you are using URL Schemes (here is a long list of supported schemes), so you will need to create your own calculator.

Here is a similar question: Launch an app from within another (iPhone)

like image 30
Adam Avatar answered Sep 21 '22 06:09

Adam