Skip to content

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kofktu committed Nov 5, 2017
2 parents 4dab39a + 740bf9f commit ad09f80
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Example/Example/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,12 @@ class CustomPopOverView: UIView, KUIPopOverUsable {
return CGSize(width: 300.0, height: 400.0)
}

var popOverBackgroundColor: UIColor? {
return .black
}

var arrowDirection: UIPopoverArrowDirection {
return .none
return .up
}

lazy var webView: WKWebView = {
Expand Down
2 changes: 1 addition & 1 deletion KUIPopOver.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "KUIPopOver"
s.version = "1.0.1"
s.version = "1.0.2"
s.summary = "Easy to use PopOver in iOS"

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 4 additions & 0 deletions KUIPopOver/Classes/KUIPopOver.swift
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ private final class KUIPopOverUsableViewController: UIViewController, KUIPopOver
return view
}

var popOverBackgroundColor: UIColor? {
return popOverUsable.popOverBackgroundColor
}

var arrowDirection: UIPopoverArrowDirection {
return popOverUsable.arrowDirection
}
Expand Down
2 changes: 1 addition & 1 deletion KUIPopOver/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.0.1</string>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit ad09f80

Please sign in to comment.