Skip to content

Commit 19e111f

Browse files
committed
- PrivacyInfo.xcprivacy fixes
1 parent be48918 commit 19e111f

5 files changed

Lines changed: 9 additions & 15 deletions

File tree

Demo.xcodeproj/project.pbxproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@
122122
C0CB62121B884FA100C33368 /* TextViewSpecialCaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61C61B884D4100C33368 /* TextViewSpecialCaseViewController.m */; };
123123
C0CB62131B884FA100C33368 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61C81B884D4100C33368 /* ViewController.m */; };
124124
C0CB62141B884FA100C33368 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61CA1B884D4100C33368 /* WebViewController.m */; };
125-
C0CB62741B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */ = {isa = PBXBuildFile; fileRef = C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */; };
126-
C0CB62751B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */ = {isa = PBXBuildFile; fileRef = C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */; };
127125
C0D070F32AF8C43200963B19 /* TextFieldView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D070F22AF8C43200963B19 /* TextFieldView.swift */; };
128126
C0D070F52AF8C59B00963B19 /* TextFieldHostingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D070F42AF8C59B00963B19 /* TextFieldHostingViewController.swift */; };
129127
C0F841F82ACAC14300616ECD /* TestCases.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0F841F62ACAC14300616ECD /* TestCases.storyboard */; };
@@ -321,7 +319,6 @@
321319
C0CB61E41B884D4100C33368 /* TextViewSpecialCaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextViewSpecialCaseViewController.swift; sourceTree = "<group>"; };
322320
C0CB61E51B884D4100C33368 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
323321
C0CB61E61B884D4100C33368 /* WebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebViewController.swift; sourceTree = "<group>"; };
324-
C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = IQKeyboardManagerScreenshot.png; path = Screenshot/IQKeyboardManagerScreenshot.png; sourceTree = SOURCE_ROOT; };
325322
C0D070F22AF8C43200963B19 /* TextFieldView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldView.swift; sourceTree = "<group>"; };
326323
C0D070F42AF8C59B00963B19 /* TextFieldHostingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldHostingViewController.swift; sourceTree = "<group>"; };
327324
C0F841F72ACAC14300616ECD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/TestCases.storyboard; sourceTree = "<group>"; };
@@ -613,7 +610,6 @@
613610
C0CB61CB1B884D4100C33368 /* Resources */ = {
614611
isa = PBXGroup;
615612
children = (
616-
C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */,
617613
C0CB61CC1B884D4100C33368 /* Images.xcassets */,
618614
C0CB61CD1B884D4100C33368 /* iTunesArtwork */,
619615
);
@@ -935,7 +931,6 @@
935931
buildActionMask = 2147483647;
936932
files = (
937933
C0CB61EC1B884F1E00C33368 /* Images.xcassets in Resources */,
938-
C0CB62751B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */,
939934
4C794CF520D5948600502C9B /* FullScreenControllers.storyboard in Resources */,
940935
C0CB61E81B884F1500C33368 /* iTunesArtwork@2x in Resources */,
941936
C0CB61E71B884F1500C33368 /* iTunesArtwork in Resources */,
@@ -955,7 +950,6 @@
955950
files = (
956951
C0CB61EB1B884F1D00C33368 /* Images.xcassets in Resources */,
957952
C0CB61EA1B884F1600C33368 /* iTunesArtwork@2x in Resources */,
958-
C0CB62741B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */,
959953
C0CB61E91B884F1600C33368 /* iTunesArtwork in Resources */,
960954
4C794CFF20D59BBA00502C9B /* Main.storyboard in Resources */,
961955
4C794D1D20D59C0500502C9B /* Launch.storyboard in Resources */,

Demo/Objective_C_Demo/ViewController/ViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ @implementation ViewController
3434
- (IBAction)shareClicked:(UIBarButtonItem *)sender
3535
{
3636
NSString *shareString = @"IQKeyboardManager is really great control for iOS developer to manage keyboard-textField.";
37-
UIImage *shareImage = [UIImage imageNamed:@"IQKeyboardManagerScreenshot"];
37+
// UIImage *shareImage = [UIImage imageNamed:@"IQKeyboardManagerScreenshot"];
3838
NSURL *youtubeUrl = [NSURL URLWithString:@"http://youtu.be/6nhLw6hju2A"];
3939

4040
NSArray *activityItems = @[youtubeUrl,
41-
shareString,
42-
shareImage];
41+
// shareImage,
42+
shareString];
4343

4444
UIActivityViewController *controller = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
4545
NSArray *excludedActivities = @[UIActivityTypePrint,

Demo/Swift_Demo/ViewController/ViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ class ViewController: BaseTableViewController {
2929
@IBAction func shareClicked (_ sender: UIBarButtonItem) {
3030

3131
let shareString: String = "IQKeyboardManager is really great for iOS developer to manage keyboard-textField."
32-
let shareImage: UIImage = UIImage(named: "IQKeyboardManagerScreenshot")!
32+
// let shareImage: UIImage = UIImage(named: "IQKeyboardManagerScreenshot")!
3333
let youtubeUrl: URL = URL(string: "http://youtu.be/6nhLw6hju2A")!
3434

3535
var activityItems = [Any]()
3636
activityItems.append(shareString)
37-
activityItems.append(shareImage)
37+
// activityItems.append(shareImage)
3838
activityItems.append(youtubeUrl)
3939

4040
let controller = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)

IQKeyboardManager.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "IQKeyboardManager",
3-
"version": "6.5.18",
3+
"version": "6.5.19",
44
"source": {
55
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
6-
"tag": "7.0.2"
6+
"tag": "7.0.3"
77
},
88
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
99
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",

IQKeyboardManagerSwift.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "IQKeyboardManagerSwift",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"source": {
55
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
6-
"tag": "7.0.2"
6+
"tag": "7.0.3"
77
},
88
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
99
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",

0 commit comments

Comments
 (0)