Mahdi Yusuf
Mahdi Yusuf
it was in the background, i am dont think is has happened on our devices trying to reproduce it as we speak we added a queue but issue seems to...
@yeahphil any updates we are also running into this now, similarly we aren't using encryption nor can we reproduce on demand.
@emuye anything on your end?
@hafizrahman have you found a work around for this using xibs? I hating laying out project programmatically.
@nicklockwood what I am simply want to load a view controller with a xib interface with dynamic content?
I am doing the following currently. ``` - (UIView *)swipeView:(SwipeView *)swipeView viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view { TUSwipedViewController *viewController = [[TUSwipedViewController alloc] init]; viewController.number.text = [_items[index] stringValue]; return viewController.view; } ``` I...
This ended up doing the trick ``` - (UIView *)swipeView:(SwipeView *)swipeView viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view { TUSwipedViewController *viewController = nil; if (!view || !viewController) { //load the view if no view...
@nicklockwood you think it would be possible to stick a nav stack as each view in the swipe? that is what I am hoping to achieve. No luck so far....
@nicklockwood Thanks for the awesome feedback! I am going to proceed and see where I get.
@nicklockwood I keep getting errors when i have the file owner set to nil. Here is a gist describing what I have done. https://gist.github.com/myusuf3/8aa14656ac23ed09be09 Right when it goes to get...