Skip to content

Commit 9a491d3

Browse files
committed
Updated Readme
1 parent 66abe0c commit 9a491d3

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Popup Dialog is a simple, customizable popup dialog written in Swift.
2929
- [x] Fully themeable via appearance, including fonts, colors, corner radius, shadow, overlay color and blur, etc.
3030
- [x] Can be dismissed via swipe and background tap
3131
- [x] Objective-C compatible
32-
- [x] Works on all devices and screens
32+
- [x] Works on all devices and screens supporting iOS 8.0+
3333

3434
<p>&nbsp;</p>
3535

@@ -42,11 +42,11 @@ it, simply add the following to your Podfile:
4242

4343
```ruby
4444
source 'https://github.com/CocoaPods/Specs.git'
45-
platform :ios, '9.0'
45+
platform :ios, '8.0'
4646
use_frameworks!
4747

4848
target '<Your Target Name>'
49-
pod 'PopupDialog', '~> 0.3'
49+
pod 'PopupDialog', '~> 0.4'
5050
```
5151

5252
If you are looking for a Swift 3 version of PopupDialog, specify the following branch in your podfile:
@@ -64,7 +64,7 @@ Please not the the Swift3 branch might not be up to date until release.
6464
To install, simply add the following line to your Cartfile:
6565

6666
```ruby
67-
github "Orderella/PopupDialog" ~> 0.3
67+
github "Orderella/PopupDialog" ~> 0.4
6868
```
6969

7070
## Manually
@@ -80,6 +80,8 @@ folder to your project.
8080
You can find this and more example projects in the repo. To run it, clone the repo, and run `pod install` from the Example directory first.
8181

8282
```swift
83+
import PopupDialog
84+
8385
// Prepare the popup assets
8486
let title = "THIS IS THE DIALOG TITLE"
8587
let message = "This is the message section of the popup dialog default view"
@@ -387,13 +389,13 @@ DefaultButton *ok = [[DefaultButton alloc] initWithTitle:@"OK" dismissOnTap:YES
387389
388390
# Requirements
389391
390-
As this dialog is based on UIStackViews, a minimum Version of iOS 9.0 is required.
391-
This dialog was written with Swift 2.2, 3.X compatability will be published on a seperate branch soon.
392+
Minimum requirement is iOS 8.0. This dialog was written with Swift 2.2, 3.X compatibility will be published on a seperate branch soon.
392393
393394
<p>&nbsp;</p>
394395
395396
# Changelog
396397
398+
* **0.4.0** iOS 8 compatibility
397399
* **0.3.3** Fixes buttons being added multiple times
398400
* **0.3.2** Dialog repositioning when interacting with keyboard<br>Non dismissable buttons option<br>Additional completion handler when dialog is dismissed
399401
* **0.3.1** Fixed Carthage issues

0 commit comments

Comments
 (0)