Skip to content

Commit

Permalink
- PrivacyInfo.xcprivacy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hackiftekhar committed May 6, 2024
1 parent be48918 commit 19e111f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 15 deletions.
6 changes: 0 additions & 6 deletions Demo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,6 @@
C0CB62121B884FA100C33368 /* TextViewSpecialCaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61C61B884D4100C33368 /* TextViewSpecialCaseViewController.m */; };
C0CB62131B884FA100C33368 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61C81B884D4100C33368 /* ViewController.m */; };
C0CB62141B884FA100C33368 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CB61CA1B884D4100C33368 /* WebViewController.m */; };
C0CB62741B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */ = {isa = PBXBuildFile; fileRef = C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */; };
C0CB62751B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */ = {isa = PBXBuildFile; fileRef = C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */; };
C0D070F32AF8C43200963B19 /* TextFieldView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D070F22AF8C43200963B19 /* TextFieldView.swift */; };
C0D070F52AF8C59B00963B19 /* TextFieldHostingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D070F42AF8C59B00963B19 /* TextFieldHostingViewController.swift */; };
C0F841F82ACAC14300616ECD /* TestCases.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0F841F62ACAC14300616ECD /* TestCases.storyboard */; };
Expand Down Expand Up @@ -321,7 +319,6 @@
C0CB61E41B884D4100C33368 /* TextViewSpecialCaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextViewSpecialCaseViewController.swift; sourceTree = "<group>"; };
C0CB61E51B884D4100C33368 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
C0CB61E61B884D4100C33368 /* WebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebViewController.swift; sourceTree = "<group>"; };
C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = IQKeyboardManagerScreenshot.png; path = Screenshot/IQKeyboardManagerScreenshot.png; sourceTree = SOURCE_ROOT; };
C0D070F22AF8C43200963B19 /* TextFieldView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldView.swift; sourceTree = "<group>"; };
C0D070F42AF8C59B00963B19 /* TextFieldHostingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldHostingViewController.swift; sourceTree = "<group>"; };
C0F841F72ACAC14300616ECD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/TestCases.storyboard; sourceTree = "<group>"; };
Expand Down Expand Up @@ -613,7 +610,6 @@
C0CB61CB1B884D4100C33368 /* Resources */ = {
isa = PBXGroup;
children = (
C0CB62731B8856B300C33368 /* IQKeyboardManagerScreenshot.png */,
C0CB61CC1B884D4100C33368 /* Images.xcassets */,
C0CB61CD1B884D4100C33368 /* iTunesArtwork */,
);
Expand Down Expand Up @@ -935,7 +931,6 @@
buildActionMask = 2147483647;
files = (
C0CB61EC1B884F1E00C33368 /* Images.xcassets in Resources */,
C0CB62751B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */,
4C794CF520D5948600502C9B /* FullScreenControllers.storyboard in Resources */,
C0CB61E81B884F1500C33368 /* iTunesArtwork@2x in Resources */,
C0CB61E71B884F1500C33368 /* iTunesArtwork in Resources */,
Expand All @@ -955,7 +950,6 @@
files = (
C0CB61EB1B884F1D00C33368 /* Images.xcassets in Resources */,
C0CB61EA1B884F1600C33368 /* iTunesArtwork@2x in Resources */,
C0CB62741B8856B300C33368 /* IQKeyboardManagerScreenshot.png in Resources */,
C0CB61E91B884F1600C33368 /* iTunesArtwork in Resources */,
4C794CFF20D59BBA00502C9B /* Main.storyboard in Resources */,
4C794D1D20D59C0500502C9B /* Launch.storyboard in Resources */,
Expand Down
6 changes: 3 additions & 3 deletions Demo/Objective_C_Demo/ViewController/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ @implementation ViewController
- (IBAction)shareClicked:(UIBarButtonItem *)sender
{
NSString *shareString = @"IQKeyboardManager is really great control for iOS developer to manage keyboard-textField.";
UIImage *shareImage = [UIImage imageNamed:@"IQKeyboardManagerScreenshot"];
// UIImage *shareImage = [UIImage imageNamed:@"IQKeyboardManagerScreenshot"];
NSURL *youtubeUrl = [NSURL URLWithString:@"http://youtu.be/6nhLw6hju2A"];

NSArray *activityItems = @[youtubeUrl,
shareString,
shareImage];
// shareImage,
shareString];

UIActivityViewController *controller = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
NSArray *excludedActivities = @[UIActivityTypePrint,
Expand Down
4 changes: 2 additions & 2 deletions Demo/Swift_Demo/ViewController/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ class ViewController: BaseTableViewController {
@IBAction func shareClicked (_ sender: UIBarButtonItem) {

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

var activityItems = [Any]()
activityItems.append(shareString)
activityItems.append(shareImage)
// activityItems.append(shareImage)
activityItems.append(youtubeUrl)

let controller = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
Expand Down
4 changes: 2 additions & 2 deletions IQKeyboardManager.podspec.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "IQKeyboardManager",
"version": "6.5.18",
"version": "6.5.19",
"source": {
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
"tag": "7.0.2"
"tag": "7.0.3"
},
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",
Expand Down
4 changes: 2 additions & 2 deletions IQKeyboardManagerSwift.podspec.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "IQKeyboardManagerSwift",
"version": "7.0.2",
"version": "7.0.3",
"source": {
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
"tag": "7.0.2"
"tag": "7.0.3"
},
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",
Expand Down

0 comments on commit 19e111f

Please sign in to comment.