Skip to content

Commit 3b76827

Browse files
committed
Readme changes
1 parent 25eaa53 commit 3b76827

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

InAppSettingsKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'InAppSettingsKit'
3-
s.version = '3.7.3'
3+
s.version = '3.8'
44
s.summary = 'This iPhone framework allows settings to be in-app in addition to being in the Settings app.'
55

66
s.description = <<-DESC

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -205,23 +205,23 @@ InAppSettingsKit adds a new element `IASKOpenURLSpecifier` that allows to open a
205205
206206
## Web View Controller
207207
To open a specified URL inside your application, `IASKAppSettingsWebViewController` displays a fullscreen View Controller with an embedded [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview).
208-
By default is shows an indeterminate activity indicator on the right side of the Navigation Bar when a page is loading.
208+
By default it shows an indeterminate activity indicator on the right side of the navigation bar when a page is loading.
209209
210-
The Web View Controller can be defined in the Settings plist by using the following mandatory IASKSpecifier properties:
210+
The Web View Controller can be defined in the Settings plist by using the following mandatory properties:
211211
212212
- `Type`: set to `PSChildPaneSpecifier`
213213
- `IASKViewControllerClass`: set to `IASKAppSettingsWebViewController`
214214
- `IASKViewControllerSelector`: set to `initWithFile:specifier:`
215215
- `Title`: the localized title of the row
216216
- `File`: corresponds to the URL you want to load (e.g. "https://www.futuretap.com")
217217
218-
Use the following optional IASKSpecifier properties to customize the Web View Controller:
218+
Use the following optional properties to customize the Web View Controller:
219219
220-
- `IASKWebViewShowProgress`: set to `YES` to replace the default activity indicator on the Navigation Bar by a progress bar just below the Navigation Bar, which dynamically updates according to the [`estimatedProgress`](https://developer.apple.com/documentation/webkit/wkwebview/1415007-estimatedprogress) property of [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview).
220+
- `IASKWebViewShowProgress`: set to `YES` to replace the default activity indicator on the navigation bar by a progress bar just below the navigation bar, which dynamically updates according to the [`estimatedProgress`](https://developer.apple.com/documentation/webkit/wkwebview/1415007-estimatedprogress) property of [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview).
221221
The progress bar will be removed when page loading completes.
222-
- `IASKWebViewShowNavigationalButtons`: set to `YES` to show navigational buttons on the right side of the Navigation Bar. Their enable state will update dynamically based on the navigation history of the [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview).
223-
- `IASKWebViewHideBottomBar`: set to `YES` to hide the toolbar at the bottom of the screen when the `IASKAppSettingsWebViewController` is pushed on to a navigation controller. This will present the [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview) full screen and prevents situations where the user can navigate the tab bar while the `IASKAppSettingsWebViewController` stays still present.
224-
This setting is ignored when the `IASKAppSettingsWebViewController` is presented modally.
222+
- `IASKWebViewShowNavigationalButtons`: set to `YES` to show navigational buttons on the right side of the navigation bar. Their enabled state will update dynamically based on the navigation history of the [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview).
223+
- `IASKWebViewHideBottomBar`: set to `YES` to hide the tab bar at the bottom of the screen when the `IASKAppSettingsWebViewController` is pushed on to a navigation controller. This will present the [`WKWebView`](https://developer.apple.com/documentation/webkit/wkwebview) full screen and prevents situations where the user can navigate the tab bar while the `IASKAppSettingsWebViewController` stays still present.
224+
This setting is ignored when `IASKAppSettingsWebViewController` is presented modally.
225225
226226
For more details, open the [Sample application](#sample-application) and take a look at all rows that start with **WebView**.
227227

0 commit comments

Comments
 (0)