Chris Blessing
Chris Blessing
It works for me on iOS 10 / Xcode 8 beta 6 (8S201h). I am using the delegate, and the only change I had to make was w/rt optional unbinding...
Xcode 8 also warns about a lack of a `[super awakeFromNib]` so I added that to MGSwipeTableCell.m's`awakeFromNib`. `-(void) awakeFromNib` `{` `[super awakeFromNib];` ` ` ` if (!_panRecognizer) {` ` [self...
Couple things you can try: In your AndroidManifest for your try specifying: `android:largeHeap="true"` (ref: https://developer.android.com/guide/topics/manifest/application-element.html#largeHeap) Also I do a memory check (although it doesn't always reflect reality at the time...
I was able to accomplish this with some CSS overrides, if you're interested in experimenting. Using some standard markup from the examples, which I have contained in a column about...
Here's a simple selector you can use to adjust the "check" mark indicator on hover: ``` .pretty:hover .state label::after { background-color: #eee !important; } ``` You can probably already see...
Hey all, came here to post this after I resolved all the warnings. For me, removing all of the explicit unwrapping conflicts (e.g. param is `T!` version, not the optional...