How to successfully import Appkit Framework in iPhone? - iphone

I would to use the NSSpeechRecognition but this Appkit Framework was not available in iPhone os frameworks.
This is available in systems/library/frameworks/Appkit.framework. Is there other way to make use of AppKit for NSSpeechRecognitio in iPhone?
Thank you.
ZaldzBugz

App-Kit is not available on the iPhone. It's iOS counterpart is UIKit.
You could try VocalKit for Speech-Recognition on the iPhone.

Related

create application for Mac OS X from ios

I have iPad game application. Now I want it for the Mac OS x. This application is using Cocos2D and Gamekit framework. How can I create Mac OS X application. Gamekit framework is only available in ios. Any help is appreciable.
Its a very broad question. You are asking how too create a Mac App which can't be done in a single SO answer
Your best start would be to use the Cocoa Application template and work forward. The Google and Apple example code will show you many examples.
Depending on how much of your program is rooted in the UIKit based API will determine how easy it is to translate your program. The UIKit framework doesnt exist in Mac but most items have an equivalent NSThing equivalent (UIButton is similar to NSButton)
You will have to disable the GameKit stuff as that isn't on MacOS(yet)
The core of your troubles will be to place your Cocos2D view into a NSWindow hierarchy and possibly full screen it at launch.
Good Luck

import Appkit framework in iphone Application

i am new in iphone technology , i want to use class NSspeechSynthesizer from Appkit framework, but when i import this framework in my application , it give 7 error in my application.
please provide me help on this problem.
You can't import AppKit, it is not available on the iPhone, it's an OS X library.
You could check out OpenEars, it supports for text-to-speech for iOS.
The text-to-speech library OpenEars uses is called CMU Flite, and you could install it directly, but the documentation on the CMU Flite site is a bit poor if you are not very experienced.
I would go for OpenEars, because they have a nice script doing most of the work for you.

How do i view eps file in iphone?

I am new to iPhone app development.
Can someone help me in displaying eps file content in iphone.
Thanks
Rajeev
The Mac OS X CoreGraphics framework includes CGPSConverter (which can be used to do this), but this functionality is not available in the iOS CoreGraphics framework. Your only option is to use a 3rd party library or perhaps a web service.

Can we use PDFKit framework for iPad?

i'm trying to launch a webView by clicking a URL link in a Pdf file.... but i'm unable to do it.... one of the forum member asked me to use PDFKit but it works only in MAc OS 10.0 and above. Where as i'm trying to create my APP in SDK 3.2.. please send the sample code if possible....
No in iOS 4.2 there is no PDFKit framework available (see the document "iOS Technology Overview"). In UIKit and in the QuartzCore.framework are same functions for working with PDF's.
As of iOS 11 the answer to this question is now yes.

error when AppKit framework added in iphone application

i want to import in my iphone application, but i know this framework is not available in iphone sdk,but i need to use NSfileWrapper class in this framework, is this class also available in UIKit or others framework available in iphone sdk, thanks
No, NSFileWrapper is not available on the iPhone. Simply adding a framework that doesn't exist on the iPhone also won't get you anything. Your application is very limited on the iPhone with regards to accessing files and you basically have to use the classes and methods provided by the Foundation framework for the iPhone.