diff --git a/TagNameDetection/TagNameDetection.xcodeproj/project.pbxproj b/TagNameDetection/TagNameDetection.xcodeproj/project.pbxproj index 86712aa..d2650ff 100644 --- a/TagNameDetection/TagNameDetection.xcodeproj/project.pbxproj +++ b/TagNameDetection/TagNameDetection.xcodeproj/project.pbxproj @@ -289,7 +289,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.Datt.TagNameDetection; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; @@ -305,7 +305,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.Datt.TagNameDetection; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; diff --git a/TagNameDetection/TagNameDetection.xcodeproj/project.xcworkspace/xcuserdata/datt.xcuserdatad/UserInterfaceState.xcuserstate b/TagNameDetection/TagNameDetection.xcodeproj/project.xcworkspace/xcuserdata/datt.xcuserdatad/UserInterfaceState.xcuserstate index b8277aa..cd967d5 100644 Binary files a/TagNameDetection/TagNameDetection.xcodeproj/project.xcworkspace/xcuserdata/datt.xcuserdatad/UserInterfaceState.xcuserstate and b/TagNameDetection/TagNameDetection.xcodeproj/project.xcworkspace/xcuserdata/datt.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 94be158..192f593 100644 --- a/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -52,7 +52,7 @@ ignoreCount = "0" continueAfterRunningActions = "No" filePath = "TagNameDetection/DPTagTextView.swift" - timestampString = "566802747.229502" + timestampString = "580899963.175871" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" startingLineNumber = "122" @@ -68,7 +68,7 @@ ignoreCount = "0" continueAfterRunningActions = "No" filePath = "TagNameDetection/DPTagTextView.swift" - timestampString = "566802747.229833" + timestampString = "580899963.176232" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" startingLineNumber = "208" @@ -84,12 +84,12 @@ ignoreCount = "0" continueAfterRunningActions = "No" filePath = "TagNameDetection/DPTagTextView.swift" - timestampString = "566802747.230037" + timestampString = "580899963.1764539" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" startingLineNumber = "327" endingLineNumber = "327" - landmarkName = "textView(_:shouldChangeTextIn:replacementText:)" + landmarkName = "tapOnTextView(_:)" landmarkType = "7"> @@ -100,7 +100,7 @@ ignoreCount = "0" continueAfterRunningActions = "No" filePath = "TagNameDetection/DPTagTextView.swift" - timestampString = "566802747.230225" + timestampString = "580899963.1766731" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" startingLineNumber = "174" diff --git a/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcschemes/xcschememanagement.plist b/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcschemes/xcschememanagement.plist index 6ac80ba..88e7421 100644 --- a/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/TagNameDetection/TagNameDetection.xcodeproj/xcuserdata/datt.xcuserdatad/xcschemes/xcschememanagement.plist @@ -9,6 +9,11 @@ orderHint 0 + TagNameDetection.xcscheme_^#shared#^_ + + orderHint + 0 + diff --git a/TagNameDetection/TagNameDetection/AppDelegate.swift b/TagNameDetection/TagNameDetection/AppDelegate.swift index 32223a2..bd38a8c 100644 --- a/TagNameDetection/TagNameDetection/AppDelegate.swift +++ b/TagNameDetection/TagNameDetection/AppDelegate.swift @@ -14,7 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. return true } diff --git a/TagNameDetection/TagNameDetection/DPTagTextView.swift b/TagNameDetection/TagNameDetection/DPTagTextView.swift index 94a764c..8e96501 100644 --- a/TagNameDetection/TagNameDetection/DPTagTextView.swift +++ b/TagNameDetection/TagNameDetection/DPTagTextView.swift @@ -147,9 +147,9 @@ class DPTagTextView: UITextView , UITextViewDelegate { } let formattedString = NSMutableAttributedString(string:strTemp) - formattedString.addAttributes([NSAttributedStringKey.font: txtFont , NSAttributedStringKey.foregroundColor : txtColor ] , range: NSRange(location:0,length:formattedString.length)) + formattedString.addAttributes([NSAttributedString.Key.font: txtFont , NSAttributedString.Key.foregroundColor : txtColor ] , range: NSRange(location:0,length:formattedString.length)) for range in arrRange { - formattedString.addAttributes([NSAttributedStringKey.font : tagFont , NSAttributedStringKey.backgroundColor : tagBackgroundColor, NSAttributedStringKey.foregroundColor : tagTxtColor] , range: NSRange(location:range.lowerBound.encodedOffset,length:range.upperBound.encodedOffset-range.lowerBound.encodedOffset)) + formattedString.addAttributes([NSAttributedString.Key.font : tagFont , NSAttributedString.Key.backgroundColor : tagBackgroundColor, NSAttributedString.Key.foregroundColor : tagTxtColor] , range: NSRange(location:range.lowerBound.encodedOffset,length:range.upperBound.encodedOffset-range.lowerBound.encodedOffset)) } self.attributedText = formattedString diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Info.plist b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Info.plist new file mode 100644 index 0000000..15aca56 --- /dev/null +++ b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.com.Datt.TagNameDetection + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Resources/DWARF/TagNameDetection b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Resources/DWARF/TagNameDetection new file mode 100644 index 0000000..5c23952 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app.dSYM/Contents/Resources/DWARF/TagNameDetection differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 0000000..f7c5640 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 0000000..32288e8 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 0000000..ee63988 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Info.plist b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 0000000..aff38db Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib new file mode 100644 index 0000000..d6566cb Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib new file mode 100644 index 0000000..ea3f388 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCore.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCore.dylib new file mode 100755 index 0000000..10ade00 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCore.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreFoundation.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreFoundation.dylib new file mode 100755 index 0000000..ac6b7c3 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreFoundation.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreGraphics.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 0000000..300c98e Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreImage.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 0000000..7455242 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDarwin.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 0000000..368da6e Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDarwin.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDispatch.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 0000000..8f9fb7e Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftDispatch.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftFoundation.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 0000000..ca416f8 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftFoundation.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftMetal.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftMetal.dylib new file mode 100755 index 0000000..954009e Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftMetal.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftObjectiveC.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 0000000..d8d6ef9 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftQuartzCore.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftQuartzCore.dylib new file mode 100755 index 0000000..41aece5 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftQuartzCore.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftUIKit.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 0000000..bc84ce2 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftUIKit.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftos.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftos.dylib new file mode 100755 index 0000000..8d39204 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Frameworks/libswiftos.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Info.plist b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Info.plist new file mode 100644 index 0000000..9e3baaa Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/Info.plist differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/PkgInfo b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/TagNameDetection b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/TagNameDetection new file mode 100755 index 0000000..17e2721 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/TagNameDetection differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/_CodeSignature/CodeResources b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/_CodeSignature/CodeResources new file mode 100644 index 0000000..6fad975 --- /dev/null +++ b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/_CodeSignature/CodeResources @@ -0,0 +1,410 @@ + + + + + files + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + Pvzr8jsei3ABFTtG/TJJfVzqidk= + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + JvpI0DfslxtXGPpA3hiWe7JyGm8= + + Base.lproj/Main.storyboardc/Info.plist + + Txq0DoEAKWZLDcscViCr6DoxItc= + + Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib + + 5wfzKviXGj/y6XaSKM+ZESnX6jU= + + Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib + + 7DAss2x4ECdfeNCfpRpPVb1Ng+Y= + + Frameworks/libswiftCore.dylib + + kNTktO/5G3xNevL0uYOXKp9Zdcg= + + Frameworks/libswiftCoreFoundation.dylib + + Biqo+wgT7igriH7iijbkVGeiWqI= + + Frameworks/libswiftCoreGraphics.dylib + + t6M6DIhPDEzonCX63e3yVTRve0Y= + + Frameworks/libswiftCoreImage.dylib + + TIMG08D9LpsY+ERv4BBzb4lze2Q= + + Frameworks/libswiftDarwin.dylib + + AuVK0F7A5BWLDSk3rF77VD57MbU= + + Frameworks/libswiftDispatch.dylib + + ZoQR7zAnHJa3KEFzcw/SYA+fG3o= + + Frameworks/libswiftFoundation.dylib + + KWiHc6hfDcARL58iPVia4kgX5OU= + + Frameworks/libswiftMetal.dylib + + VZkI67SurVnC4fCg7hdRdI+PoZY= + + Frameworks/libswiftObjectiveC.dylib + + fmyPv/POuwUfCRayHWDQg0ZW/p4= + + Frameworks/libswiftQuartzCore.dylib + + NPeT/t0fZR0p7W2ZPnydVjLnTtg= + + Frameworks/libswiftUIKit.dylib + + H59NimcbzoqzPTlJv8DLGiSrmEE= + + Frameworks/libswiftos.dylib + + 3Ow21zsQMzSlbncczlHB7M2KUag= + + Info.plist + + 2Dlk336Yi0Zw7jvjvWVi2yZ37Xo= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + libswiftRemoteMirror.dylib + + KXPuhJWVj384i4gmYkXy8E9WM40= + + + files2 + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash + + Pvzr8jsei3ABFTtG/TJJfVzqidk= + + hash2 + + eV1U9xDtK9CR5U9yS5EZqBd3BQSf5ojfJUikFdO02Xw= + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + hash2 + + HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash + + JvpI0DfslxtXGPpA3hiWe7JyGm8= + + hash2 + + dzqezkmKZEC0nwpsDoXQVt33xZiVu7OFmE6Mvhr7TiM= + + + Base.lproj/Main.storyboardc/Info.plist + + hash + + Txq0DoEAKWZLDcscViCr6DoxItc= + + hash2 + + 7GCRbgefxN76j9UqBfhmXp6YDwGW49Alc0Ra/ftKIHk= + + + Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib + + hash + + 5wfzKviXGj/y6XaSKM+ZESnX6jU= + + hash2 + + PDjcQQ/1V+w/OG2Sf7PJpWISITEssm0gCD2Xc2kd2c0= + + + Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib + + hash + + 7DAss2x4ECdfeNCfpRpPVb1Ng+Y= + + hash2 + + tDZqmSZzQuMfeTJKIi6+QnpKwBzuAVB8ReZRNiuk09E= + + + Frameworks/libswiftCore.dylib + + hash + + kNTktO/5G3xNevL0uYOXKp9Zdcg= + + hash2 + + owWDw3N53D4aQAQQsNZvRN8Xh1T5K3RzKLIMGpRjYCE= + + + Frameworks/libswiftCoreFoundation.dylib + + hash + + Biqo+wgT7igriH7iijbkVGeiWqI= + + hash2 + + BWwqIvR4FAoV+EuGkM5pPOCj/LGmmEYDneL3ny+WWuc= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + t6M6DIhPDEzonCX63e3yVTRve0Y= + + hash2 + + KGHzziBnPGiTzuX7traG+UO2Bn45n7vReataLKUr97g= + + + Frameworks/libswiftCoreImage.dylib + + hash + + TIMG08D9LpsY+ERv4BBzb4lze2Q= + + hash2 + + g/xy3c1N5Z60f60gZ5rNGBb8XRWo6p2cntY2EbHmIr8= + + + Frameworks/libswiftDarwin.dylib + + hash + + AuVK0F7A5BWLDSk3rF77VD57MbU= + + hash2 + + 39wFp25dL+3cERhqF7p5bdQn0ScbiZvL3WVi1a8JOfA= + + + Frameworks/libswiftDispatch.dylib + + hash + + ZoQR7zAnHJa3KEFzcw/SYA+fG3o= + + hash2 + + uQq3FzXOYsHegIr09wlNTn3E5kSl3Qkn7JBntXP60KE= + + + Frameworks/libswiftFoundation.dylib + + hash + + KWiHc6hfDcARL58iPVia4kgX5OU= + + hash2 + + QKR+MMogkB6mvaEs6zHJgdhDDohl4/zUOIad5KwVhm0= + + + Frameworks/libswiftMetal.dylib + + hash + + VZkI67SurVnC4fCg7hdRdI+PoZY= + + hash2 + + Kqs8gDL1/aVkMC2E3DJiNCK1F4wTul65G4q+m+Nm4xY= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + fmyPv/POuwUfCRayHWDQg0ZW/p4= + + hash2 + + mF74AZ1gA509WDkxoyrigSRXO2MAdwEzQrJoqdztXK8= + + + Frameworks/libswiftQuartzCore.dylib + + hash + + NPeT/t0fZR0p7W2ZPnydVjLnTtg= + + hash2 + + Mj50mIlW3p6wE2j1XOW1rojMqH6zuV55nTXjUEbFefo= + + + Frameworks/libswiftUIKit.dylib + + hash + + H59NimcbzoqzPTlJv8DLGiSrmEE= + + hash2 + + 6nTLIAELXykQKd9c3gQN5ILot9VrvOSpfynbQhtWlGY= + + + Frameworks/libswiftos.dylib + + hash + + 3Ow21zsQMzSlbncczlHB7M2KUag= + + hash2 + + ZELEy0+mGvQ/x24vS+Et0BpCroFmT1ziL0T+PA+gQUg= + + + libswiftRemoteMirror.dylib + + hash + + KXPuhJWVj384i4gmYkXy8E9WM40= + + hash2 + + E6imofsK1m6yFqU1x9vPZZT13ZGjMx7L6Q1PVL03hOk= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/libswiftRemoteMirror.dylib b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/libswiftRemoteMirror.dylib new file mode 100755 index 0000000..47e147b Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.app/libswiftRemoteMirror.dylib differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftdoc b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftdoc new file mode 100644 index 0000000..2b55d52 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftdoc differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftmodule b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftmodule new file mode 100644 index 0000000..6a66a04 Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.swiftmodule/x86_64.swiftmodule differ diff --git a/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.zip b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.zip new file mode 100644 index 0000000..209f1da Binary files /dev/null and b/TagNameDetection/build/Release-iphonesimulator/TagNameDetection.zip differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 0000000..f7c5640 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/Info.plist b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 0000000..32288e8 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 0000000..ee63988 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Info.plist b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 0000000..aff38db Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib new file mode 100644 index 0000000..d6566cb Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/Orx-Ax-oIA-view-zHk-zz-Hb0.nib differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib new file mode 100644 index 0000000..ea3f388 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Base.lproj/Main.storyboardc/UIViewController-Orx-Ax-oIA.nib differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/DerivedSources/TagNameDetection-Swift.h b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/DerivedSources/TagNameDetection-Swift.h new file mode 100644 index 0000000..91d7886 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/DerivedSources/TagNameDetection-Swift.h @@ -0,0 +1,253 @@ +// Generated by Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.37.1) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR __attribute__((enum_extensibility(open))) +# else +# define SWIFT_ENUM_ATTR +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if __has_feature(modules) +@import UIKit; +@import Foundation; +@import CoreGraphics; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="TagNameDetection",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +@class UIWindow; +@class UIApplication; + +SWIFT_CLASS("_TtC16TagNameDetection11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions SWIFT_WARN_UNUSED_RESULT; +- (void)applicationWillResignActive:(UIApplication * _Nonnull)application; +- (void)applicationDidEnterBackground:(UIApplication * _Nonnull)application; +- (void)applicationWillEnterForeground:(UIApplication * _Nonnull)application; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIColor; +@class UIGestureRecognizer; +@class NSTextContainer; +@class NSCoder; + +SWIFT_CLASS("_TtC16TagNameDetection13DPTagTextView") +@interface DPTagTextView : UITextView +@property (nonatomic, copy) NSString * _Nonnull tagPrefix; +@property (nonatomic, copy) NSString * _Nonnull tagPostfix; +@property (nonatomic, strong) UIColor * _Nonnull txtColor; +@property (nonatomic, strong) UIColor * _Nonnull tagTxtColor; +@property (nonatomic, strong) UIColor * _Nonnull tagBackgroundColor; +- (BOOL)textView:(UITextView * _Nonnull)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT; +- (void)addGestureRecognizer:(UIGestureRecognizer * _Nonnull)gestureRecognizer; +- (nonnull instancetype)initWithFrame:(CGRect)frame textContainer:(NSTextContainer * _Nullable)textContainer OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=7.0); +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class UILabel; +@class UISwitch; +@class UIButton; +@class NSBundle; + +SWIFT_CLASS("_TtC16TagNameDetection14ViewController") +@interface ViewController : UIViewController +@property (nonatomic, weak) IBOutlet DPTagTextView * _Null_unspecified txtMain; +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tbl; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified lbl; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified lblTagName; +- (void)viewDidLoad; +- (BOOL)textView:(UITextView * _Nonnull)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT; +- (void)didReceiveMemoryWarning; +- (IBAction)tagDetectionSwitchAction:(UISwitch * _Nonnull)sender; +- (IBAction)btnClearAction:(UIButton * _Nonnull)sender; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableViewCell; + +@interface ViewController (SWIFT_EXTENSION(TagNameDetection)) +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + + +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/LaunchScreen-SBPartialInfo.plist b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/LaunchScreen-SBPartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/LaunchScreen-SBPartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Main-SBPartialInfo.plist b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Main-SBPartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Main-SBPartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/AppDelegate.o b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/AppDelegate.o new file mode 100644 index 0000000..2482d28 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/AppDelegate.o differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/DPTagTextView.o b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/DPTagTextView.o new file mode 100644 index 0000000..7fa6888 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/DPTagTextView.o differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-OutputFileMap.json b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-OutputFileMap.json new file mode 100644 index 0000000..20572fa --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/TagNameDetection\/ViewController.swift":{"swiftmodule":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController~partial.swiftmodule","object":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController.o","llvm-bc":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController.bc","diagnostics":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController.dia","dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController.d","swift-dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/ViewController.swiftdeps"},"":{"swift-dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/TagNameDetection-master.swiftdeps"},"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/TagNameDetection\/AppDelegate.swift":{"swiftmodule":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate~partial.swiftmodule","object":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate.o","llvm-bc":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate.bc","diagnostics":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate.dia","dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate.d","swift-dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/AppDelegate.swiftdeps"},"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/TagNameDetection\/DPTagTextView.swift":{"swiftmodule":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView~partial.swiftmodule","object":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView.o","llvm-bc":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView.bc","diagnostics":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView.dia","dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView.d","swift-dependencies":"\/Users\/datt\/Documents\/TagNameDetection\/TagNameDetection\/build\/TagNameDetection.build\/Release-iphonesimulator\/TagNameDetection.build\/Objects-normal\/x86_64\/DPTagTextView.swiftdeps"}} \ No newline at end of file diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-Swift.h b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-Swift.h new file mode 100644 index 0000000..91d7886 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-Swift.h @@ -0,0 +1,253 @@ +// Generated by Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.37.1) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR __attribute__((enum_extensibility(open))) +# else +# define SWIFT_ENUM_ATTR +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if __has_feature(modules) +@import UIKit; +@import Foundation; +@import CoreGraphics; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="TagNameDetection",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +@class UIWindow; +@class UIApplication; + +SWIFT_CLASS("_TtC16TagNameDetection11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions SWIFT_WARN_UNUSED_RESULT; +- (void)applicationWillResignActive:(UIApplication * _Nonnull)application; +- (void)applicationDidEnterBackground:(UIApplication * _Nonnull)application; +- (void)applicationWillEnterForeground:(UIApplication * _Nonnull)application; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIColor; +@class UIGestureRecognizer; +@class NSTextContainer; +@class NSCoder; + +SWIFT_CLASS("_TtC16TagNameDetection13DPTagTextView") +@interface DPTagTextView : UITextView +@property (nonatomic, copy) NSString * _Nonnull tagPrefix; +@property (nonatomic, copy) NSString * _Nonnull tagPostfix; +@property (nonatomic, strong) UIColor * _Nonnull txtColor; +@property (nonatomic, strong) UIColor * _Nonnull tagTxtColor; +@property (nonatomic, strong) UIColor * _Nonnull tagBackgroundColor; +- (BOOL)textView:(UITextView * _Nonnull)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT; +- (void)addGestureRecognizer:(UIGestureRecognizer * _Nonnull)gestureRecognizer; +- (nonnull instancetype)initWithFrame:(CGRect)frame textContainer:(NSTextContainer * _Nullable)textContainer OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=7.0); +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class UILabel; +@class UISwitch; +@class UIButton; +@class NSBundle; + +SWIFT_CLASS("_TtC16TagNameDetection14ViewController") +@interface ViewController : UIViewController +@property (nonatomic, weak) IBOutlet DPTagTextView * _Null_unspecified txtMain; +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tbl; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified lbl; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified lblTagName; +- (void)viewDidLoad; +- (BOOL)textView:(UITextView * _Nonnull)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT; +- (void)didReceiveMemoryWarning; +- (IBAction)tagDetectionSwitchAction:(UISwitch * _Nonnull)sender; +- (IBAction)btnClearAction:(UIButton * _Nonnull)sender; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableViewCell; + +@interface ViewController (SWIFT_EXTENSION(TagNameDetection)) +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + + +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-master.swiftdeps b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-master.swiftdeps new file mode 100644 index 0000000..fcbf1ed --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-master.swiftdeps @@ -0,0 +1,7 @@ +version: "Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.37.1)" +options: "6fb50d4081f497240fb2a41d74007356" +build_time: [1545996474, 287323000] +inputs: + "/Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift": [9223372036, 854775807] + "/Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift": [9223372036, 854775807] + "/Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift": [9223372036, 854775807] diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.LinkFileList b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.LinkFileList new file mode 100644 index 0000000..c0ea2f4 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.LinkFileList @@ -0,0 +1,3 @@ +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.o +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/DPTagTextView.o +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/AppDelegate.o diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftdoc b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftdoc new file mode 100644 index 0000000..2b55d52 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftdoc differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftmodule b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftmodule new file mode 100644 index 0000000..6a66a04 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftmodule differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection_dependency_info.dat b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection_dependency_info.dat new file mode 100644 index 0000000..81c33cb Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection_dependency_info.dat differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.d b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.d new file mode 100644 index 0000000..e7a025a --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.d @@ -0,0 +1,6 @@ +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.o : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/DPTagTextView.o : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/AppDelegate.o : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftmodule : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection.swiftdoc : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes +/Users/datt/Documents/TagNameDetection/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/TagNameDetection-Swift.h : /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/AppDelegate.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/ViewController.swift /Users/datt/Documents/TagNameDetection/TagNameDetection/TagNameDetection/DPTagTextView.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.dia b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.dia new file mode 100644 index 0000000..0d97cb3 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.dia differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.o b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.o new file mode 100644 index 0000000..a2b0a2f Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/Objects-normal/x86_64/ViewController.o differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-non-framework-target-headers.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-non-framework-target-headers.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-target-headers.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-all-target-headers.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-generated-files.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-generated-files.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-own-target-headers.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-own-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-own-target-headers.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-project-headers.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-project-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection-project-headers.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app-Simulated.xcent b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app-Simulated.xcent new file mode 100644 index 0000000..5a49fb5 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app-Simulated.xcent @@ -0,0 +1,12 @@ + + + + + application-identifier + 5B4H3J2ZTK.com.Datt.TagNameDetection + keychain-access-groups + + 5B4H3J2ZTK.com.Datt.TagNameDetection + + + diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app.xcent b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app.xcent new file mode 100644 index 0000000..3842541 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.app.xcent @@ -0,0 +1,8 @@ + + + + + com.apple.security.get-task-allow + + + diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/TagNameDetection.hmap differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_dependencies b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_dependencies new file mode 100644 index 0000000..5737f98 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_dependencies differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_generated_info.plist b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_generated_info.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/assetcatalog_generated_info.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/dgph b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/dgph new file mode 100644 index 0000000..e911d41 Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/dgph differ diff --git a/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/swift-overrides.hmap b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/swift-overrides.hmap new file mode 100644 index 0000000..47a776b Binary files /dev/null and b/TagNameDetection/build/TagNameDetection.build/Release-iphonesimulator/TagNameDetection.build/swift-overrides.hmap differ