Explain how to deploy iOS app bundle via Window > Devices.
diff --git a/Mobile.md b/Mobile.md
index f9dc00e..ce15d2a 100644
--- a/Mobile.md
+++ b/Mobile.md
@@ -70,9 +70,17 @@
$ gomobile build -target=ios golang.org/x/mobile/example/basic
```
-The build command will build an application bundle, named basic.app. You can deploy application bundles to your iOS device by using the [ios-deploy](https://github.com/phonegap/ios-deploy) utility command line tool.
+The build command will build an application bundle, named basic.app.
-Use ios-deploy to push the application to your device.
+You can deploy .app files by dragging and dropping them to the device.
+
+* In Xcode, open Window > Devices.
+* Select the physical device from the left pane.
+* Drag and drop the .app file to "Installed Apps" section.
+
+
+
+Alternatively, you can deploy application bundles to your iOS device by using the [ios-deploy](https://github.com/phonegap/ios-deploy) utility command line tool. Use ios-deploy to push the application to your device.
```
$ ios-deploy -b basic.app