You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Display things in an app-modal floating window that users can fuzzy-filter by typing ahead.
9
+
Display things in an app-modal floating window that users can fuzzy-filter by typing ahead. Its style roughly matches the floating Spotlight window.
10
10
11
11

12
12
13
+
The list uses the default `NSTableView` styles, so it'll look right at home on Big Sur and older macOS versions alike!
14
+
13
15
## Usage
14
16
15
17
This module strives for taking care of its components's memory wherever possible. This means you do not need to keep a reference to the window or its controller around. **Both will be freed when the action has been completed.**
@@ -22,7 +24,7 @@ This is useful if you want to filter e.g. a limited collection of files, like "R
22
24
```swift
23
25
importFloatingFilter
24
26
25
-
// ...
27
+
// ...
26
28
27
29
let items = [
28
30
Item(identifier: UUID(), title: "Create new widget"),
@@ -45,11 +47,11 @@ Add this to your `Cartfile`:
45
47
46
48
github "cleancocoa/FloatingFilter"
47
49
48
-
Then run
50
+
Then run
49
51
50
52
$ carthage update
51
53
52
-
... and include `FloatingFilter.framework` from `Carthage/Build/Mac` in your app.
54
+
... and include `FloatingFilter.framework` from `Carthage/Build/Mac` in your app.
0 commit comments