Jin Wang
Jin Wang
Any updates on this one? Same issue here.
Gday, @hamstap85! The error indicates that the path of the generated swift executable is wrongly configured. You need to make sure the path inside your `kernel.json` is correctly pointed to...
Hey @pjcabrera, thanks for the feedback. Could you please try `jupyter notebook --NotebookApp.token=`? (yep, nothing after the equals symbol.) Currently token is not supported. I should've mentioned that in the...
The only thing this repo currently does is loading the firmware. It would take too much effort to make this an actual driver. I don't thing the author is still...
@651893553 @yangfeiyu iOS 10 里面作者采用了重新创建NSLayoutConstraint的方法,这样就导致你本来连接的IBOutlet的NSLayoutConstraint不再是新创建这个。两个办法: - 如果你不想改作者代码,那就不要用outlet这种方法,在ViewDidLoad里面动态获取这个LayoutConstraint。你可以在 IB 里面定义identifier然后用这个去找,很简单的。 - 或者你可以用我修改过的这个gist替换掉作者的XXNibBridge.m文件: https://gist.github.com/KelvinJin/89050ba5ebad16a01abf3b96d15ebbe7
@651893553 还是nil出错么?那只能试试用identifier自己获取了,不用IBOutlet,也很简单。
@651893553 诶,那就奇怪了,我这边倒是没遇到这个问题。。。
Wow, nice finding. Ideally the applying method should work exactly the same as setting the origin ourselves. Feels like a UIKit bug or something.
I found that if you set the size of cell to be smaller than the size of the screen it won't disappear. Even if it's just 1px smaller.
I think it's definitely possible and it works with the sample app. The size of the collectionView shouldn't be a limit of this library. (the size of the cell might...