0
votes
1answer
29 views

Change language used in copy/paste menu to something other than English

I have set "Localization native development region" to "France" in my Info.plist. Nevertheless, the copy/paste menu on a UITextField is still in English. I do not understand why, and I guess the app ...
0
votes
1answer
49 views

UIWebView freezes when text is selected

My app, on very rare occasions, freezes when I select text in a UIWebView. Here's how it happens: Tap and hold to select text Text gets selected Whole app freezes, unresponsive to touch, but I can ...
-1
votes
0answers
22 views

UIMenuController shows only once on device

I managed to show a UIMenuController with custom items when selecting text on UIWebView subclass. After I scroll or try to select some other text, the menu won't appear. This happens only on device. ...
0
votes
1answer
41 views

UITableView never calls tableView:shouldShowMenuForRowAtIndexPath: on its delegate

I'm creating and displaying an instance of UITableView. The delegate (which is actually my subclass of UITableView) never receives any of the following selectors: ...
1
vote
1answer
44 views

How to remove default menu items from UIMenuController?

I create a menu in UITableViewCell, this UIMenuController just has two items. but when i runing it, this menu displayed many items, seems ios default menu item, be shown as the screenshot: How can ...
2
votes
2answers
49 views

How to display more than one line in UIMenuItem?

I'm trying to display more than one line of text in a custom UIMenuItem. I've tried using a simple "\n" in the title property of the UIMenuItem but with no luck. Example: UIMenuItem *menuItem; //Is ...
0
votes
0answers
111 views

Detect event drag selected text in UIWebView?

I need add observer for example UIMenuControllerDidShowMenuNotification without show UIMenuController. Need two events, start and finish select text. How to do it?
0
votes
0answers
48 views

Enable to select text while selecting menu on custom view

I am able to show Custom Menu in custom view.Now,I want this - When user click on suppose "ITEM" Menu,He/She should be able to select text.How can I perform this.Please help me.
0
votes
0answers
42 views

shouldShowMenuForRowAtIndexPath and Copy menu position

I need to copy some text from an UITableView. I'm using the method shouldShowMenuForRowAtIndexPath, it does work perfectly ! But, I'd like to set the position (on the x axis, horizontally) of the ...
1
vote
1answer
110 views

UIMenuController Not showing from subview UITextView

I am using SLTextField+Autocomplete which I changed to use a textview instead of field in order to make it multiline. For some reason the default code works, but when I move over to TextView it no ...
0
votes
1answer
211 views

iOS - Showing Menu in UITableViewCell

In my application, i've to show a menu controller on tapping a table view cell. Its showing a menu. As well as all the actions are being executed successfully. Good till now. One minor problem I'm ...
0
votes
0answers
56 views

ios IPA file context menu does not appear but works in Xcode compile

- (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; UIMenuItem *customMenuItem1 = [[UIMenuItem alloc] initWithTitle:@"sumbola-Define" action:@selector(customAction1:)]; ...
0
votes
1answer
87 views

UImenucontroller behaves differently on App Store than on development

My customers reported a strange behaviour for a basic UIMenuController : when the app is installed from app store or ad hoc, the UIMenuController won't show up ! It works perfectly fine on the ...
13
votes
2answers
696 views

How could I replace UIMenuController with my own view when text is selected?

When text is selected, by default a UIMenuController pops up with cut/copy/paste etc. I'd like to replace this with my own custom view (similar looking, but twice as high so that I can have two ...
2
votes
3answers
206 views

Showing UIMenuController deselects UITableViewCell

I've implemented a long press gesture recognizer on a table view cell that shows the UIMenuController. But when menu shows, the corresponding table view cell deselects. Before showing the menu, I ...
0
votes
0answers
79 views

Disable Attributed Text Format Menu Item

Is there a way to disable the "BIU" menu item (tapping this expands to Bold Italic Underline) that is displayed when you select text in a UITextView that uses NSAttributedString? I have read that the ...
5
votes
1answer
258 views

UIMenuController with Images

Can anyone provide an example of how to display images in a UIMenuController? In iBooks, if you select some text and then choose Highlight from the displayed menu, it will switch to a contextual ...
0
votes
1answer
133 views

UIMenuController doesn't show in a second UIViewController

I have two UIViewController, one is the main and from this trough a button you can go to the second. In SecondView.m I have the following code: - (IBAction)showpopup:(id)sender { [self ...
2
votes
3answers
198 views

UITEXTVIEW: Get the recent word typed in uitextview

I want to get the most recent word entered by the user from the UITextView. The user can enter a word anywhere in the UITextView, in the middle or in the end or in the beginning. I would consider it ...
2
votes
1answer
61 views

How to determine when a user has copied text

I am having a hard time how to figure out when a user has selected & copied text the default iOS way: canPerformSelector works before presenting this menu, but I am interested in knowing after ...
0
votes
1answer
91 views

Deselect word after Define in UITextView

I've got a UIViewController with UITextView in its view. When user selects text, there's Define system menu item that uses UIReferenceLibraryViewController to define the word. The problem is that the ...
0
votes
1answer
360 views

UITableViewCell won't become first responder (Showing UIMenuController on cell gesture)

I have an application with a UITabBar. Every tab is a UINavigationController with several UIViewControllers inside. One of those View Controllers contains a UITableView, and I want to display a ...
1
vote
2answers
176 views

Custom UIMenuItem only showed first time

I have added an custom menu in the - (void)viewDidLoad method of my view controller: UIMenuItem *menuItem = [[UIMenuItem alloc] initWithTitle:@"Read selected" action:@selector(readSelectedText)]; ...
1
vote
0answers
239 views

UIMenuController willHideMenu notification not sent if moved, then dismissed with background tap

I have a fairly simple subclass of UILabel to allow a tap to show a UIMenuController so the text can be copied. This all works fine in most circumstances. #import "EPHighlightLabel.h" #import ...
0
votes
1answer
179 views

UIMenuController not showing custom UIMenuItem in subclassed UITextView

I have a subclassed UITextView that I would like to show a custom UIMenuItem when a user pressed and holds in the UITextView. For the life of me, I cannot get my custom item to show. Here is what I ...
1
vote
2answers
244 views

[UIMenuController sharedMenuController].isMenuVisible always be NO in EGOTextView

Im employing EGOTextView to do NSAttributedString editing. There is a bug on UIMenuController which I couldn't get over. As the logic described in the following code, the UIMenu will alternately show ...
1
vote
1answer
199 views

Getting rid of the standard items in an UIMenuController

I'm working on a very small editor in iOS. It only has one view, one button and a textView. When the button gets pressed, a custom UIMenuController pops up with 3 options: toggle bold, toggle italics ...
0
votes
1answer
202 views

UIMenuController not appearing after change of view

I have a UIMenuController which is presented when a UIView is tapped. I have implemented the canPerformAction and canBecomeFirstResponder methods, and it works when the view is first loaded. The app ...
4
votes
1answer
219 views

UIMenuController not showing UIPasteBoard is cleared iPhone app?

Am working in message based iPhone application. In my application looking like iMessage native iOS app. I made Bubbles with used UIImageView and UILabel. I made UILabel as clickable and showing Copy ...
1
vote
1answer
246 views

iOS shared UIMenuController probably cache UIMenuItem

I think the following image can describe the problem pretty well... https://www.dropbox.com/s/pd1syth3gce6qh7/ios_uimenucontroller.png I also copy corresponding code part here: CGPoint point = ...
1
vote
1answer
347 views

single button UIMenuController

Good morning ! I'm writing an app which displays an outlet list, every outlet can sell 2 kind of product and / or can be an online shop. For show this on my app I have added some "icons", but in ...
0
votes
1answer
138 views

UITextView Copy option not showing in top iPhone app?

Am working in message based iPhone app. I have added UITextView to show the messages typed by the user. This app allows the user to copy the messages. Whenever the user selects the messages in the ...
2
votes
1answer
2k views

How to show a custom UIMenuItem for a UITableViewCell?

I want the UIMenuController that pops up when I long-press a UITableViewCell to show custom UIMenuItems. I set up the custom item in viewDidLoad UIMenuItem *testMenuItem = [[UIMenuItem alloc] ...
5
votes
2answers
342 views

_UIFallbackPresentationViewController

I keep getting the following error when I dismiss the dictionary that opens from tapping Define on the UIMenuController in a UIWebView on the iPhone:- Unbalanced calls to begin/end appearance ...
1
vote
0answers
162 views

Make UIMenuController Unselectable

I'm working on an iPhone app, and I want to use a tooltip. I've seen some questions about tooltips for iOS in the past (like this one) where the solution is to use something from cocoa controls, but ...
0
votes
0answers
155 views

UIMenuController on UIView dismisses keyboard from UITextView in iOS

User taps on UIView (message bubble) to present UIMenuController having copy message similar to sms app. But if previously UITextView is the firstResponder then it loses focus and dismisses keyboard ...
1
vote
2answers
625 views

Display UIMenuController in editingDidBegin of a UITextField

I simply want to display the UIMenuController right after a textfield has become active. What i'm doing right now is: - (IBAction)textFieldeditingDidBegin:(UITextField *)sender { // textfield ...
0
votes
0answers
138 views

Disable UIMenuController in a custom editor in a webview

I tried all the solution in stack and on other web site but no one works so I post a new question. I have a UIWebView and I load a javascript rich text editor (tinyMCE). I want to disable the ...
0
votes
0answers
47 views

When is -[UIWebSelectionAssistant layoutChangedByScrolling:] called?

I'm trying to debug a problem with customizing UIMenuController for a UIWebView. My custom menu item does not seem to respond to touches depending on the website. Its seems to work for websites like ...
1
vote
0answers
477 views

Use standard Copy and retrieve value from the UIPasteboard with a custom UIMenuController item

i've a web view with displayed a pdf file. As a standard for the web view the user can select a text and perform standard operation like copy, cut. I need to add a custom UIMenuController for show ...
0
votes
0answers
143 views

UIMenuController Reappears after selecting a menu item

I have got a UIMenucontroller, where i have added a menu item named "highlight" which i am using for adding highlight to selected text in UIwebview using the following javascript : [webView ...
2
votes
1answer
293 views

UIMenuController respond very slowly

I'm working on epub reader , simply I built the reader structure to get the path of html file load it on UIWebView , then I paginate the chapter and view it ... as you know when you select a text in ...
0
votes
0answers
292 views

ios UIMenuController doesn't work with balloon view

I have a ballon view and when I tap on cell UIMenuController doesn't appear. I tried to implement in (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath, ...
1
vote
1answer
240 views

Setting UIMenuController arrow direction not working

I have a UIMenuController which I have added a few extra items to. I would like the menu to be BELOW the text that I select, so I tried: [UIMenuController sharedMenuController].arrowDirection = ...
0
votes
1answer
313 views

UIMenuController not responding to first selection, only second

I have a view with a long press gesture recognizer in it: - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { UILongPressGestureRecognizer ...
1
vote
1answer
365 views

Custom UIMenuController

Is there a way to add a custom image to the UIMenuItem in iOS? It have to look like in Android (Image + Text below). May be there are completed custom controllers? Thx in advance.
3
votes
3answers
1k views

IOS UIMenuController UIMenuItem, how to determine item selected with generic selector method

With the following setup .... MyUIMenuItem *someAction = [[MyUIMenuItem alloc]initWithTitle : @"Something" action : @selector(menuItemSelected:)]; MyUIMenuItem *someAction2 = [[MyUIMenuItem ...
4
votes
2answers
968 views

iOS: How to get the selected UIMenuItem from UIMenuController

I am trying to use UIMenuCnotroller to show a list of dynamically generated items, they share the same action method, and so I need to know which item is selected in the single action method. ...
0
votes
1answer
426 views

UIMenu buttons disappear after usage

I've customized UIMenuController like this: UIMenuItem* note = [[[UIMenuItem alloc] initWithTitle:@"Note action:@selector(noteItemTapped:)] autorelease]; UIMenuItem* share = [[[UIMenuItem alloc] ...
6
votes
2answers
580 views

CGPDF and UILongPressGestureRecognizer

When in safari, I have the option to "download" a PDF and when it is auto-quickLook'd I can longpress and have it highlight the PDF text with copy and paste functionality. I do not wish to highlight ...

1 2