ToddManUtah
ToddManUtah
I figured it out. The header reference size was zero. Once I added the line of code: layout.headerReferenceSize = CGSizeMake(0, 50); everything started working. I'm not sure why this is...
I've found another problem along the same lines (problem with Supplementary Views). The method "willMoveToIndexPath" isn't being called when I cross the border from one section to another section ONLY...
Thanks so much. I wanted to demo this Monday afternoon for someone and I'm all but done. Except for this one problem. And it's killing me. Thanks SO much for...
I had the same idea on creating a dummy placeholder item. I'll play around with that idea and see how far I can get. Thanks for taking the time. I'm...
Thanks for that idea. I was looking at doing that in another section of code. The "other" section of code where I want to integrate your code would allow me...
Absolutely. Can me give me an email address and I'll zip up the module. I really appreciate it, especially when you're busy. Once we get it figured out, I'd be...
I found a partial answer in stackoverflow. I added this to the ListView definition in the xml file: android:focusable="false" This fixed the issue I was seeing where the row didn't...
Is there a way to set a text row to become the first responder. If I were using simple objective-c, I'd put something in like this: [textView becomeFirstResponder]; I think...
Just an idea: I wanted to create a new class called NamedThemeData that would allow me to store ThemeData instances with names. This would allow me to maintain a Map...