Iam using the column layout model of css3 to view content in a UIWebView (iPhone/iPad), I would like to programmatically select and copy the content of each column and paste it in another view, is there way to achieve this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m pretty sure this is not currently possible. CSS3 paged media selectors when they’re implemented will enable page selection when you’re using a box layout, this will then have to be extended to column selection. For now, you’re SOL. But if you only care about iPad, and you have a box layout and know your font, font size, leading and kernings, you could try to calculate where the column breaks are in Javascript – but this is a large undertaking.