Skip to content

Commit 03c35d1

Browse files
committed
Add hideCounted(id:)
1 parent fef932d commit 03c35d1

9 files changed

+430
-20
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33

44
## [3.4.1](https://github.com/SwiftKickMobile/SwiftMessages/releases/tag/3.4.1)
55

6+
### Features
7+
68
### Bug Fixes
79
* Fix #116 for message views that don't adopt the `Identifiable` protocol by using the memory address as the ID.
810
* Fix #113 MessageView not hiding

Demo/Demo.xcodeproj/project.pbxproj

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
226FA5E61F506993004CB2BC /* CountedViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226FA5E51F506993004CB2BC /* CountedViewController.swift */; };
11+
226FA5E81F5071D0004CB2BC /* CountedMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226FA5E71F5071D0004CB2BC /* CountedMessageView.swift */; };
12+
226FA5EA1F507586004CB2BC /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226FA5E91F507586004CB2BC /* Utils.swift */; };
1013
49BBBE829403C46C88EE748E /* Pods_Demo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 094A4CD596AFE2FDC36B2833 /* Pods_Demo.framework */; };
1114
8642F4361D5F7F540061BDCD /* ExploreViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8642F4351D5F7F540061BDCD /* ExploreViewController.swift */; };
1215
86AEDCE61D5D1DB70030232E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AEDCE51D5D1DB70030232E /* AppDelegate.swift */; };
@@ -22,6 +25,9 @@
2225
094A4CD596AFE2FDC36B2833 /* Pods_Demo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Demo.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2326
160AC8A3EE68E1D705664BF8 /* Pods-Demo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Demo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Demo/Pods-Demo.debug.xcconfig"; sourceTree = "<group>"; };
2427
16131DA1E3BA049C9E4C0308 /* Pods-Demo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Demo.release.xcconfig"; path = "Pods/Target Support Files/Pods-Demo/Pods-Demo.release.xcconfig"; sourceTree = "<group>"; };
28+
226FA5E51F506993004CB2BC /* CountedViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountedViewController.swift; sourceTree = "<group>"; };
29+
226FA5E71F5071D0004CB2BC /* CountedMessageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountedMessageView.swift; sourceTree = "<group>"; };
30+
226FA5E91F507586004CB2BC /* Utils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
2531
8642F4351D5F7F540061BDCD /* ExploreViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExploreViewController.swift; sourceTree = "<group>"; };
2632
86AEDCE21D5D1DB70030232E /* Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Demo.app; sourceTree = BUILT_PRODUCTS_DIR; };
2733
86AEDCE51D5D1DB70030232E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
@@ -87,12 +93,15 @@
8793
86AEDCE51D5D1DB70030232E /* AppDelegate.swift */,
8894
86AEDCE71D5D1DB70030232E /* ViewController.swift */,
8995
8642F4351D5F7F540061BDCD /* ExploreViewController.swift */,
96+
226FA5E51F506993004CB2BC /* CountedViewController.swift */,
9097
86AEDCE91D5D1DB70030232E /* Main.storyboard */,
9198
86AEDCEC1D5D1DB70030232E /* Assets.xcassets */,
9299
86AEDCEE1D5D1DB70030232E /* LaunchScreen.storyboard */,
93100
86AEDCF11D5D1DB70030232E /* Info.plist */,
94101
86C0ABA11D5E816600F76BD6 /* TacoDialogView.swift */,
95102
86C0AB9F1D5E814600F76BD6 /* TacoDialogView.xib */,
103+
226FA5E71F5071D0004CB2BC /* CountedMessageView.swift */,
104+
226FA5E91F507586004CB2BC /* Utils.swift */,
96105
);
97106
path = Demo;
98107
sourceTree = "<group>";
@@ -229,8 +238,11 @@
229238
buildActionMask = 2147483647;
230239
files = (
231240
8642F4361D5F7F540061BDCD /* ExploreViewController.swift in Sources */,
241+
226FA5E81F5071D0004CB2BC /* CountedMessageView.swift in Sources */,
232242
86AEDCE81D5D1DB70030232E /* ViewController.swift in Sources */,
243+
226FA5EA1F507586004CB2BC /* Utils.swift in Sources */,
233244
86AEDCE61D5D1DB70030232E /* AppDelegate.swift in Sources */,
245+
226FA5E61F506993004CB2BC /* CountedViewController.swift in Sources */,
234246
86C0ABA21D5E816600F76BD6 /* TacoDialogView.swift in Sources */,
235247
);
236248
runOnlyForDeploymentPostprocessing = 0;

0 commit comments

Comments
 (0)