Re: Insetting a UIWebView while a keyboard is on screen

2014-05-28 Thread Diederik Meijer
You could consider animating the UiWebview up when the keyboard appears and down again when it disappears. Verstuurd vanaf mijn iPad > Op 28 mei 2014 om 05:40 heeft Nick Zitzmann het > volgende geschreven: > > Short question: What's the best way to scroll a UIWebView slightly from its > cur

UIActivityViewController tinting

2014-05-28 Thread Stevo Brock
Hello, We are developing an iOS 7 app that is making significant use of tint colors. The app also provides sharing functionality through the UIActivityViewController. When bringing up the UIActivityViewController and selecting "Message", the corresponding UI has: -The global bar backg

Changing enabled SSL cipher using CFStream

2014-05-28 Thread Bastian Hafer
Hey there, Setup: I am writing an app for iOS 7 that implements a Client-Server architecture (one iPhone acts as server the other iPhone acts as client). Therefore I am using CFStream and SSL/TLS to make the connection suitable secure. Problem: Now the connection as well as SSL/TLS are workin

Re: Insetting a UIWebView while a keyboard is on screen

2014-05-28 Thread Nick Zitzmann
On May 28, 2014, at 2:11 AM, Diederik Meijer wrote: > You could consider animating the UiWebview up when the keyboard appears and > down again when it disappears. That works, but then I have the opposite problem - touching in an area that isn't obscured by the keyboard causes it to be moved

Re: EXC_BAD_ACCESS in NSData

2014-05-28 Thread Uli Kusterer
On 26 May 2014, at 20:28, Charles Srstka wrote: > On May 26, 2014, at 7:43 PM, Uli Kusterer > wrote: >> Regarding endian-swapping, that depends on the file format. If you wrote >> that file yourself, you don’t usually need to do any swapping. > > That's true. For example, back in the PowerPC d

Re: EXC_BAD_ACCESS in NSData

2014-05-28 Thread Charles Srstka
On May 27, 2014, at 3:51 PM, Greg Parker wrote: > On May 27, 2014, at 12:52 PM, Charles Srstka wrote: >> On May 27, 2014, at 2:08 PM, Greg Parker wrote: >>> On May 26, 2014, at 8:28 PM, Charles Srstka >>> wrote: On May 26, 2014, at 7:43 PM, Uli Kusterer wrote: > Regarding endi

Re: EXC_BAD_ACCESS in NSData

2014-05-28 Thread Charles Srstka
On May 28, 2014, at 11:24 PM, Uli Kusterer wrote: > Or change struct alignment or the size of ints or … I’ve been programming for > a couple of days, I’ve taken this into account. But I’d rather retroactively > go and fix something (you have to re-test when porting to a new platform > anyway)

Re: EXC_BAD_ACCESS in NSData

2014-05-28 Thread Scott Ribe
On May 28, 2014, at 10:24 PM, Uli Kusterer wrote: > That said, if you want to be really endian-safe, use an XML file format saved > as UTF-8 like Property Lists. Most portable format there is. :-) Thanks a lot. I have to go rinse out my mouth now. -- Scott Ribe scott_r...@elevated-dev.com htt

Re: Insetting a UIWebView while a keyboard is on screen

2014-05-28 Thread Diederik Meijer | Ten Horses
Keyboard appears in response to a html input element getting focus? If so, adding a javascript scrollTo may work. When the element gets focus, calculate its y position in the webview and call scrollTo with relevant coordinates. Maybe all in javascript, which makes it fast and lightwight. Do you