Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Ciou authored and Joe Ciou committed Apr 8, 2019
1 parent 0919386 commit 5a58700
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Example/JKCalendar-Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-JKCalendar-Example/Pods-JKCalendar-Example-frameworks.sh",
"${PODS_ROOT}/Target Support Files/Pods-JKCalendar-Example/Pods-JKCalendar-Example-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/JKCalendar/JKCalendar.framework",
"${BUILT_PRODUCTS_DIR}/JKInfinitePageView/JKInfinitePageView.framework",
);
Expand All @@ -197,7 +197,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JKCalendar-Example/Pods-JKCalendar-Example-frameworks.sh\"\n";
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JKCalendar-Example/Pods-JKCalendar-Example-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
19D9E6AA37C40B1A00D6F001 /* [CP] Check Pods Manifest.lock */ = {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.3</string>
<string>1.1.4</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/JKCalendarScrollView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import UIKit
public class JKCalendarScrollView: UIScrollView {

public let calendar: JKCalendar = JKCalendar(frame: CGRect.zero)
weak var nativeDelegate: UIScrollViewDelegate?
public weak var nativeDelegate: UIScrollViewDelegate?

public var startsCollapsed: Bool = false
private var first = true
Expand Down
2 changes: 1 addition & 1 deletion Sources/JKCalendarTableView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
open class JKCalendarTableView: UITableView {

public let calendar: JKCalendar = JKCalendar(frame: CGRect.zero)
weak var nativeDelegate: UITableViewDelegate?
public weak var nativeDelegate: UITableViewDelegate?

private var first = true
private var rotating = false
Expand Down

0 comments on commit 5a58700

Please sign in to comment.