Skip to content

Commit

Permalink
Merge pull request intentkit#61 from ReadmeCritic/master
Browse files Browse the repository at this point in the history
Update redirects in Readme
  • Loading branch information
lazerwalker committed Nov 12, 2015
2 parents 5d6b281 + c2f2eda commit 1e8fdf1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ IntentKit attempts to solve this problem.

Installation
------------
IntentKit is easiest to install using [CocoaPods](http://cocoapods.org). Just add the following to your Podfile.
IntentKit is easiest to install using [CocoaPods](https://cocoapods.org/). Just add the following to your Podfile.

pod "IntentKit"

Expand Down Expand Up @@ -96,7 +96,7 @@ An up-to-date list of available handlers and what methods and configuration opti
If you're using `presentModally`, it will attempt to intelligently figure out which view controller to present itself on. It's possible it won't pick the correct one automatically; if that's the case, you probably want to explicitly specify the correct view controller.
```obj-c
NSURL *url = [NSURL URLWithString:@"http://google.com"]
NSURL *url = [NSURL URLWithString:@"http://www.google.com/"]
INKBrowserHandler *browserHandler = [[INKBrowserHandler alloc] init];
INKActivityPresenter *presenter = ][browserHandler openURL:url];
[presenter presentModalActivitySheetFromViewController:self];
Expand All @@ -107,7 +107,7 @@ INKActivityPresenter *presenter = ][browserHandler openURL:url];
If your app is Universal or iPad-only, if you're displaying an IntentKit `INKActivityViewController` you probably want to display it as a popover instead of a modal sheet. The following code will automatically display itself modally on an iPhone and in a `UIPopoverController` on an iPad.

```obj-c
NSURL *url = [NSURL URLWithString:@"http://google.com"]
NSURL *url = [NSURL URLWithString:@"http://www.google.com/"]
INKBrowserHandler *browserHandler = [[INKBrowserHandler alloc] init];
INKActivityPresenter *presenter = [browserHandler openURL:url];
[presenter presentActivitySheetFromViewController:self
Expand Down Expand Up @@ -252,10 +252,10 @@ Contact
Mike Walker
- https://github.com/lazerwalker
- [@lazerwalker](http://twitter.com/lazerwalker)
- [@lazerwalker](https://twitter.com/lazerwalker)
- http://lazerwalker.com
The initial version of IntentKit was built at [Hacker School](http://hackerschool.com).
The initial version of IntentKit was built at [Hacker School](https://www.recurse.com/).
License
-------
Expand Down

0 comments on commit 1e8fdf1

Please sign in to comment.