Andy Qian
Andy Qian
### Environment Details * coobjc version:1.2.0 * iOS version:13.2.3 * Xcode version:10.3 * Other informations: ### Expected behavior 编译通过 ### Actual behavior 在多处类似 [obj objectAtIndex:indexPath.row] 的地方出现错误: Multiple methods named 'objectAtIndex:'...
```swift VStack(justifyContent: .center, alignItems: .center) { ViewComponent(view: UITextField()) .placeholder("input") .text(self.viewModel.image) .font(.systemFont(ofSize: 16)) .textColor(.blue) .size(width: .fill) .inset(5) .update { $0.layer.borderColor = UIColor.black.cgColor $0.layer.borderWidth = 1 $0.layer.cornerRadius = 6 // $0.font =...
If I add a .delegate(self) to FlexLayoutViewController in demo project, it causes FlexLayoutViewController not to call the deinit method. ``` extension FlexLayoutViewController: UIScrollViewDelegate { func scrollViewDidScroll(_ scrollView: UIScrollView) { print("scrollViewDidScroll")...