Skip to content

Commit b1efd75

Browse files
committed
Update
1 parent c116cfb commit b1efd75

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Development/FluidInterfaceKit.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@
4040
moduleName = "libswiftUIKit.dylib"
4141
usesParentBreakpointCondition = "Yes">
4242
</Location>
43+
<Location
44+
uuid = "A2EF7869-1A53-4958-B6C1-1F0B223F1FBA - ed0225d50b1c0976"
45+
shouldBeEnabled = "Yes"
46+
ignoreCount = "0"
47+
continueAfterRunningActions = "No"
48+
symbolName = "UIKit.UIApplicationMain(Swift.Int32, Swift.Optional&lt;Swift.UnsafeMutablePointer&lt;Swift.UnsafeMutablePointer&lt;Swift.Int8&gt;&gt;&gt;, Swift.Optional&lt;Swift.String&gt;, Swift.Optional&lt;Swift.String&gt;) -&gt; Swift.Int32"
49+
moduleName = "UIKitCore"
50+
usesParentBreakpointCondition = "Yes">
51+
</Location>
4352
</Locations>
4453
</BreakpointContent>
4554
</BreakpointProxy>

Development/Sources/FluidInterfaceKit-Demo/DemoPopoverViewController.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ final class DemoPopoverViewController: UIViewController {
5353

5454
private final class Cell: UIView {
5555

56-
private var hostingView: FluidTooltipContainerView<SwiftUIHostingView>!
56+
private var hostingView: FluidTooltipContainerView<AnySwiftUIHostingView>!
5757

5858
init(offset: CGFloat, isTop: Bool) {
5959
super.init(frame: .null)
6060

61-
let _contentView = SwiftUIHostingView {
61+
let _contentView = AnySwiftUIHostingView {
6262
Button(
6363
action: {
6464

@@ -100,7 +100,7 @@ final class DemoPopoverViewController: UIViewController {
100100
fatalError()
101101
}
102102

103-
let tipContent = SwiftUIHostingView {
103+
let tipContent = AnySwiftUIHostingView {
104104
HStack {
105105
Button("tip") {
106106
print("tap : tip")

0 commit comments

Comments
 (0)