Qitao Yang

Results 13 comments of Qitao Yang

截图不是很方便,因为是动态的。你测试一下很简单,选中一个cell后`self.navigationController?.presentViewController(anotherVC, animated: true, completion: nil)`就能看到。

确认。iPhone5S/iOS8.1/真机,选择比较靠下的cell点击跳转,dismiss回来往上滑确认存在高度跳跃的情况。 ![img_4065](https://cloud.githubusercontent.com/assets/5517281/7163061/8568e9c0-e3ca-11e4-847b-38aa3c86efd1.PNG)

@xhzengAIB 已完美解决 [a62692b](https://github.com/KittenYang/iOS8SelfSizingCells/commit/a62692b517bd28517cfa4feb2d13b79211188384)

Hey guys @marcoserafini2 @Kofktu , I met the same problem as you, it seems that can't get the redirects url's cookies in `decidePolicyFor navigationResponse` delegate method, did you fix it?...

@LGang 这里在计算覆盖全屏的最小半径。

最后我自己用ASIHTTPRequest实现了Auth。 ``` - (ASIFormDataRequest *)formRequest { NSURL *URL = [NSURL URLWithString:kDBTokenUrl]; ASIFormDataRequest *req = [ASIFormDataRequest requestWithURL:URL]; [req setRequestMethod:@"POST"]; [req setValidatesSecureCertificate:NO]; [req setAllowCompressedResponse:YES]; // YES is the default [req setTimeOutSeconds:30];//超时时间30s [req...