I love the use of an animating gif. Nice. Now, I assume you want your entry bar to sit on top of the keyboard as it comes up?
Two options: register for notifications of when the keyboard comes up. http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html specifically: "Receiving Keyboard Notifications" (you need to use NSNotificationCenter.DefaultCenter.AddObserver, per this: http://stackoverflow.com/questions/1126726/how-to-make-a-uitextfield-move-up-when-keyboard-is-present OR: use it a a keyboard accessory. https://github.com/RobertKozak/MonoMobile.Views/blob/master/Controls/UIKeyboardToolBar.cs and when you make the cell's entry box, add the toolbar in: entry.InputAccessoryView = new UIKeyboardToolbar(this); (no ideal, this will add it in for a cell, you want to somehow have the keyboard come up without the entry box being selected. So maybe the other one is better?) On Tue, Oct 2, 2012 at 12:34 PM, c0ld <[email protected]> wrote: > Really need your help, people. I work with this case, and it seems this is a > bug. Here is image <http://dl.dropbox.com/u/106321613/wrongAnimation.gif> > of wrong animation and simplified project > <http://dl.dropbox.com/u/106321613/BubbleCell.zip> . > > > > -- > View this message in context: > http://monotouch.2284126.n4.nabble.com/DialogViewController-resize-by-UIImagePickerController-tp4657069p4657337.html > Sent from the MonoTouch mailing list archive at Nabble.com. > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch -- Nic Wise t. +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise b. http://www.fastchicken.co.nz/ mobileAgent (for FreeAgent): get your accounts in your pocket. http://goo.gl/IuBU Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa Earnest: Self-employed? Track your business expenses and income. http://earnestapp.com Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2 _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
