Skip to content

Commit

Permalink
Merge branch 'release/0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kofktu committed Sep 9, 2017
2 parents f7633e1 + 2998ac0 commit ac1fd0e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Example/Example/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class CustomPopOverView: UIView, KUIPopOverUsable {
}

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

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 = "0.0.3"
s.version = "0.0.4"
s.summary = "Easy to use PopOver in iOS"

# This description is used to generate tags and improve search results.
Expand Down
6 changes: 6 additions & 0 deletions KUIPopOver/Classes/KUIPopOverUsable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ extension KUIPopOverUsable {
}

}

public extension UIPopoverArrowDirection {
public static var none: UIPopoverArrowDirection {
return UIPopoverArrowDirection(rawValue: 0)
}
}
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>0.0.3</string>
<string>0.0.4</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit ac1fd0e

Please sign in to comment.