yilin.zhang

Results 12 comments of yilin.zhang

I have same issue. I have a main ViewController and left menu ViewController, now, at left menu controller have a button, when user click the button, want to present a...

well.. I found a way to present: The first step: In the SlideNavigationController.m, add this code: ```objective-c - (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion { [super presentViewController:viewControllerToPresent animated:flag completion:completion]; } ```...

Info.plist增加下列选项可以强制选择浅色或者深色模式 ``` UIUserInterfaceStyle UIUserInterfaceStyleLight ```

> UIUserInterfaceStyle 更正一下,`UIUserInterfaceStyle`的value必须是`Light`或者`Dark` https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW44 否则包传不上去,但实际测试写`UIUserInterfaceStyleLight`是可以进入强制浅色模式的,也就是说iOS13的代码是支持,但是审核那里还没支持

> 哈?没听懂,详细讲讲? Info.plist里的key UIUserInterfaceStyle的值必须是Light或者Dark

我们删掉了这个属性,就可以提交上去了,但是上个月还是没有关系的

wrong typo.. my question is why the `dispose` method before `subscribeNext` called?

@huangdaxiaEX 提交了一个pull request,支持了编译静态库自动复制公开头文件 https://github.com/CocoaPods/cocoapods-packager/pull/225

> @linconz can you take a look at the tracis ci failure? It's a useful feature, looking forward it's merged to master branch 我没有做过ruby的东西,不太明白这个ci为什么会报错,你可以clone我的fork工程 https://github.com/linconz/cocoapods-packager 自己编译一个package然后安装 我在自己用的时候不会报错的