panupan

Results 10 comments of panupan

+1. I'm also running into seemingly high cpu utilization for the methods insertLine / setContent. Every function call always ends up recalculating the entire element: insertTop -> insertLine -> setContent...

@LexSerest btw, if you're using insertLine and only want to show the visisble portion of the container, one workaround I found worked is to delete the lines that overflowed out...

@astefanutti thank you! that patch lowered my cpu utilization by at least 90%, exactly what I was looking for.

+1 Looks like blueprint_id generation might need to be updated to support this: https://github.com/ryanb/nested_form/blob/master/lib/nested_form/builder_mixin.rb#L106

@Dev-iL I tried changing SimulatorRemoteNotificationsBufferLength in both UIApplication+SimulatorRemoteNotifications.m and ACSimulatorRemoteNotificationsService.m to 2048 and was able to successfully receive larger payloads. Maybe try cleaning your project / deleting your derived data...

@Dev-iL Nope, only tried with 2KB which was working perfectly.

Another bug I noticed is that if a subview starts out hidden and you try to unhide it with animation, it flies in offscreen.

Sure. I think what happened is multiple modeView are being created and added to that dialog view. I'm not quite sure why it works when running the app normally but...

Rabl::Engine looks to me to be the best place to implement this caching behavior. The difficult part is that everything is designed to work around hash objects, and it's not...