• Stars
    star
    172
  • Rank 221,201 (Top 5 %)
  • Language
    Swift
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A more elegant way for message passing between iOS apps and extensions.
![Wormhole Banner](https://raw.githubusercontent.com/nixzhu/Wormhole/master/images/wormhole_banner.png)

# Wormhole

Wormhole is not just a Swift port of [MMWormhole](https://github.com/mutualmobile/MMWormhole) but with better API and use logic. You can remove any a listener from it separately.

## Example

In WatchKit extension, passing a message:

```Swift
import Wormhole

let wormhole = Wormhole(appGroupIdentifier: "group.com.nixWork.Wormhole", messageDirectoryName: "Wormhole")

wormhole.passMessage(NSNumber(bool: lightState), withIdentifier: "lightState")
```

In App, make a listener and listen a message:

```Swift
import Wormhole

let wormhole = Wormhole(appGroupIdentifier: "group.com.nixWork.Wormhole", messageDirectoryName: "Wormhole")

lazy var lightStateListener: Wormhole.Listener = {
    let action: Wormhole.Listener.Action = { [unowned self] message in
        if let lightState = message as? NSNumber {
            self.lightStateLabel.text = lightState.boolValue ? "Light On" : "Light Off"
        }
    }

    let listener = Wormhole.Listener(name: "lightStateLabel", action: action)

    return listener
    }()
     
wormhole.bindListener(lightStateListener, forMessageWithIdentifier: "lightState")
```

Now easy to remove a listener:

```Swift
wormhole.removeListener(lightStateListener, forMessageWithIdentifier: "lightState")
```
or

```Swift
wormhole.removeListenerByName("lightStateLabel", forMessageWithIdentifier: "lightState")
```

For more information, see the demo.

另有中文介绍:[再造虫洞:一次 Objective-C 到 Swift 的改写之旅](https://github.com/nixzhu/dev-blog/blob/master/2015-05-27-wormhole.md)

## Installation

### CocoaPods

[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects.

CocoaPods 0.36 adds supports for Swift and embedded frameworks. You can install it with the following command:

```bash
$ [sudo] gem install cocoapods
```

To integrate Wormhole into your Xcode project using CocoaPods, specify it in your `Podfile`:

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'Wormhole', '~> 1.0'
```

Then, run the following command:

```bash
$ pod install
```

You should open the `{Project}.xcworkspace` instead of the `{Project}.xcodeproj` after you installed anything from CocoaPods.

For more information about how to use CocoaPods, I suggest [this tutorial](http://www.raywenderlich.com/64546/introduction-to-cocoapods-2).

## Credits

Thanks to [Lex Tang](https://github.com/lexrus) design the logo banner.

## License

Wormhole is available under the MIT license. See the LICENSE file for more info.

More Repositories

1

dev-blog

翻译、开发心得或学习笔记
3,938
star
2

MonkeyKing

MonkeyKing helps you to post messages to Chinese Social Networks.
Swift
2,753
star
3

Proposer

Make permission request easier.
Swift
855
star
4

Coolie

Coolie(苦力) helps you to create models (& their constructors) from a JSON file.
Swift
507
star
5

KeyboardMan

KeyboardMan helps you to make keyboard animation.
Swift
351
star
6

Sensei

Sensei is a Mac app based on OpenAI API.
Swift
274
star
7

Baby

Create models from a JSON file, even a Baby can do it.
Swift
219
star
8

Bible-Assistant

Bible Assistant App
Objective-C
168
star
9

Ruler

Size matters, you need a ruler.
Swift
159
star
10

Navi

Focus on avatar caching.
Swift
115
star
11

AudioBot

AudioBot helps you do audio record & playback.
Swift
38
star
12

Redstone

Redstone has a State Machine
Swift
37
star
13

SharedBaby

Baby's web interface.
Swift
29
star
14

nixBoard

一块简易的围棋棋盘
JavaScript
25
star
15

HelloMou

The translation(Chinese) of Markdown Editor Mou's Hello.md
21
star
16

GentleTouch

Touch yourself, with WATCH.
Swift
19
star
17

Ananda

JSON model decoding based on yyjson.
Swift
16
star
18

AdaptiveChartDemo

Generate chart image from simple data, for WATCH
Swift
15
star
19

computation

Understanding Computation: From Simple Machines to Impossible Programs
Swift
14
star
20

AppClip

Create Web Clip for App.
Swift
14
star
21

rushGo

围棋急速入门,关于围棋的介绍,使对围棋感兴趣的人对围棋的规则有个快速了解。
12
star
22

nixhttpd

简易的http服务器以及测试环境
C
11
star
23

KeypathObserver

KeypathObserver helps you do KVO observing.
Swift
11
star
24

nixGoBoard

在iOS上实现的棋盘应用,可用于在生活中遇到某个围棋爱好者时,将iPad当做棋盘来一局,仅此而已。
Objective-C
11
star
25

SuperPreview

SuperPreview for Image Preview
Swift
8
star
26

AutoReview

AutoReview has a nice logic for show prompt of app review.
Swift
8
star
27

PropertyListenerDemo

Listen, they're changed!
Swift
7
star
28

MentionInUITextViewDemo

Detect mention in UITextView
Swift
7
star
29

TextureDemo

Swift
5
star
30

algorithm-playgrounds

Try some algorithms
Swift
5
star
31

AutoLayoutInUIScrollView

AutoLayout in UIScrollView Demo
Swift
5
star
32

StateMachineDemo

Simple State Machine Demo
Swift
5
star
33

coolie-cli

Coolie's command-line interface
Swift
5
star
34

WorkerBee

WorkerBee is a toolkit
Swift
4
star
35

CenterTwoViewsUseAutoLayout

AutoLayout Tip 1
Objective-C
4
star
36

42

The answer to life, the universe and everything.
3
star
37

NotificationCenterDemo

Swift
3
star
38

sgf2asy

转换sgf格式的围棋棋谱为asy矢量格式的脚本
Python
2
star
39

Girl

A HTML Parser
Swift
2
star
40

nixzhu.github.io

HTML
1
star
41

code-reading

Notes from code reading
1
star