Ortwin Gentz, FutureTap

Results 85 comments of Ortwin Gentz, FutureTap

would love to have `UIViewRepresentable.sizeThatFits(_:uiView:context:)` and `View.contentMargins(_:for:)`.

Awesome, thanks for the great work!

Unfortunately, OpenGL ES 2 with the shader language is a bit over the top of my head. But I just submitted a little fix. See pull: https://github.com/xissburg/XBPageCurl/pull/34

I found that the map curl animation of Apple's Maps app not only casts a shadow on the front view (=mapView) but also dims the map view. The dimming effect...

You mean an `IASKIsEditable` flag in the plist? Or something more dynamic using a delegate callback?

You could subclass `IASKAppSettingsViewController` and override `-tableView:newCellForSpecifier:`: ``` - (UITableViewCell*)tableView:(UITableView *)tableView newCellForSpecifier:(IASKSpecifier*)specifier { UITableViewCell *cell = [super tableView:tableView newCellForSpecifier:specifier]; if ([specifier.type isEqualToString:kIASKTextViewSpecifier]) { ((IASKTextViewCell*)cell).textView.editable = NO; } return cell; }...

converted to Swift: ``` override func tableView(_ tableView: UITableView, newCellForSpecifier specifier: IASKSpecifier) -> UITableViewCell { let cell = super.tableView(tableView, newCellForSpecifier: specifier) if specifier.type == kIASKTextViewSpecifier { (cell as? IASKTextViewCell)?.textView.isEditable =...

Can you reproduce this with the IASK sample app? We can’t, at least in the simulator.

Please provide a sample app, so we can look into it.

IASK automatically updates the views when the underlying NSUserDefaults are changed. This is done by observing the NSUserDefaults change notification. Or did I misunderstand your question?