How can i allow user to enter french characters in UITextField? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I cannot make a search on a term with special character (éàùçêî...) like : Bérubé or Système

Assuming the user is using a Latin character-set-based keyboard (such as US English or Français), they simply need to tap-hold the letter in question (for example, "e") on the soft keyboard in order to get access to the accented variants of "é" and so on. The user may not know this, so you may need to instruct them how to do this in your app (or website) help system.
If they're using a non-Latin keyboard, it's trickier. Then the user needs to add an additional Latin keyboard (such as US English or Français) in Settings.app via General->International->Keyboards, and then select the relevant keyboard by tapping the globe key that now appears on their soft keyboard.

Include the French keyboard in your simulator by going into the settings . Accordingly search in the UITextField then.

Related

How to get the Arabic keyboard in iphone sdk [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using to language one is English and is Arabic Language. So I want to know how to get Arabic language keyboard in iPhone.
You change Setting in simulator/Device
Go to Settins->General->keyboard->international keyboards->add New Keyboard->select Arabic
After setting change When You open the Keyboard and press the language change button and select choice language ....
If you do not know "language change button" in keyboard the see this url
With its global nature iPhone does support multiple languages and so does its keyboard. It has support for 42 languages. By default it uses English for its keyboard layout. But you can change or add more languages to its keyboard.
Go to Settings->General->KeyBoard->International Keyboards. Here you can set your keyBoard language type according to your requirement and if you want to achieve this thing through your code it's not possible.

Translate image into plain text - iOS App [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create an app where the user takes a photo and then the app translates that image into text based on what the user took a picture of. For example: If the user took a picture of a book then the app would then translate that into plain text.
Where would I start with something like this?
If you 'just' want to read an image of text into a string, look for OCR.
If you want to really have a computer describe what's in the picture.. With some background in computer vision I feel qualified to state that that's not possible with current technology.
So, if you want that, what are your options? You could do like mealsnap, and use cheap micro-labor from mechanical turk.
Check out IQEngines. It combines computer vision and crowdsourcing to figure out what's in the image.
We use it at Voxy (a language learning company) to help users create flashcards when they're learning English and don't know what the word is.
I have used one OCR in one of my app - http://www.abbyy.com/Default.aspx?DN=5b0ab341-0c6e-4119-a824-c652b9e888f4
And here is a REST based api for OCR - http://www.wisetrend.com/wisetrend_ocr_cloud.shtml

word search puzzle [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can anyone tell me how to create word search puzzle....
Any ideas where should I start?
The basic idea should eventually be an app that links to a database. Your app should get random words out of that database, and fill it in a table with multiple rows and heights. After a few words, let the app fill the remaining empty table cells with random letters. All this can be checked using arrays.
Last, program you app to check how the user slides or touches the screen, and let the app react accordingly.
That should be the idea of the app.
Probably do a lot of reading up on it first!
http://www.smashingmagazine.com/2009/08/11/how-to-create-your-first-iphone-application/
there?

Drop-down list box not displaying chinese characters [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
The Drop-down list box does not display chinese characters in IE 7. Where as Firefox and Safari display correctly. Please let me know how can we correct it in IE 7? Below is the link to the html page I am refering to.
dropdown-test.html
Since you use the decimal form (&#...;) to encode the Chinese symbols, this can't be an encoding problem. My guess is that you don't have a font with Chinese characters installed or that IE 7 can't find it for some reason.
Can you make sure that Tahoma is actually installed? If it isn't then FF and Safari might be smarter to select a replacement font than IE 7. Also try Arial font and make sure you have the Asian language pack from MS installed (see one of the last posts for links).

Custom Keyboard in iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i have to develope an application in which
i have to add two buttons within the keyboard
i need to know how to implement it.
please help me.
i will be thank full.
I have been watching the iphone classes that are in itunes from Stanford University. They had someone from Apple there and asked this question and they said that you cannot change the keyboard except to change the return key to one of the other settings for it. I do like what Facebook and Tweetie (the guy that wrote this also talked in the iphone classes) have done to add buttons. They stated that overall Apple wanted a consistant look and feel to things like the keyboard.
You can't do this. You can do what the Facebook and Tweetie apps do, though, and add an additional set of controls right above the keyboard.
You can do it with the latest iOS version. Check the inputView property of UITextField for details.