I am wondering how Amazon did the highlight/note popup buttons in the Kindle app. After reading about UIPasteboard, UIMenuController, UIResponder, and UIResponderStandardEditActions, I am able to turn on or off standard edit actions (i.e. copy, cut, paste, select, and selectAll). However I haven't found a way to add a custom action yet. I would really appreciate it if I could get a pointer.

Thanks in advance!

Chris

alt text

Edited by balexandre (added image instead link)

link|improve this question

0% accept rate
feedback

5 Answers

It looks like Amazon implemented their own custom view that mimicked the appearance of UIMenuController. I believe they did this rather than use SPI because if you click and hold on the Highlight cell, the arrow does not highlight, when it does in the real UIMenuController.

link|improve this answer
WhatsApp Inc. has this as well itunes.apple.com/WebObjects/MZStore.woa/wa/… - I don't thing that need to create a custom view for that, here is their app image: bit.ly/2sWRjQ – balexandre Oct 23 '09 at 12:50
More evidence that they recreated the control is the radius of the rounded rect doesn't exactly match that you see in the real UIMenuController callout. – Kevin Ballard Oct 29 '09 at 0:35
feedback

I don’t think there is a public interface to these controls, you’d probably have to code them yourself. (Or maybe figure out the private API, but that’s a slippery slope.) I am not sure about that, though, maybe somebody will prove me wrong.

link|improve this answer
feedback

That's a good point about the arrow part of the Notes/Highlight popup menu not highlighting, so they must be implementing their own.

However they are also obviously using a UIWebView, because it's recognizing tap and hold and they can highlight the text, and you can't get touch events from a UIWebView, much less get the information about what's selected. So how are they doing that?

This would be very useful for us to be able to do as well.

link|improve this answer
Not directly, but you can have JavaScript code in the web view getting those events, and there is bi-directional communication between the native app and the content in the web view.... It'd be a pain to implement, for sure, but far from impossible. – Sixten Otto Oct 28 '09 at 16:25
feedback

Use DTMenuController http://www.drobnik.com/touch/2010/01/dr-touchs-parts-store/

Costs 100 EUR ^_^

link|improve this answer
feedback

the javascript part can be managed with jQuery, that's a fair simple and powerful library. i'm using it for resizing and rearranging things in a webview and it works great :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.