wujichao

Results 4 comments of wujichao

this commit sucks https://github.com/romaonthego/RETableViewManager/commit/48b16f0dee7d4ff68301e675b9061fba0a58d625

add line `objc_setAssociatedObject(modal, kSemiModalPresentingViewController, nil, OBJC_ASSOCIATION_RETAIN_NONATOMIC);` before `[[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil];` works for me.

将https://github.com/music4kid/PLeakSniffer/blob/master/PLeakSniffer/Classes/NSObject%2BPLeakTrack.m#L56 这里改成下面的代码可以去掉调用getter引来的副作用 NSString *s = [NSString stringWithFormat:@"_%@", name]; // 不触发getter Ivar nameIVar = class_getInstanceVariable(self.class, [s UTF8String]); if (nameIVar) { id cur = object_getIvar(self, nameIVar); }

change protocol of request to http works for me. ``` proxy.intercept({ phase: 'request' }, function(req, resp, cycle) { req.protocol = 'http:'; }); ```