gstreamer/subprojects/gst-docs/markdown/installing/for-ios-development.md

89 lines
3.7 KiB
Markdown
Raw Normal View History

# Installing for iOS development
![](images/icons/emoticons/information.svg) All versions starting from iOS 6 are supported
2016-05-16 14:30:34 +00:00
### Prerequisites
2016-05-16 14:30:34 +00:00
For iOS development you need to download Xcode and the iOS SDK. Xcode
can be found at the App Store or
[here](https://developer.apple.com/devcenter/ios/index.action#downloads)
and the iOS SDK, if it is not already included in your version of Xcode,
can be downloaded from Xcode's preferences menu under the downloads tab.
The minimum required iOS version is 6.0. The minimum required version of
2016-09-16 20:45:24 +00:00
Xcode is 4, but 7.3 is recommended.
2016-05-16 14:30:34 +00:00
In case you are not familiar with iOS, Objective-C or Xcode, we
recommend taking a look at the available documentation at Apple's
website.
[This](http://developer.apple.com/library/ios/#DOCUMENTATION/iPhone/Conceptual/iPhone101/Articles/00_Introduction.html) can be a good starting point.
2016-05-16 14:30:34 +00:00
## Download and install GStreamer binaries
2016-05-16 14:30:34 +00:00
2016-06-17 22:21:42 +00:00
GStreamer binary installer can be found at:
2016-05-16 14:30:34 +00:00
2016-06-17 22:21:42 +00:00
[https://gstreamer.freedesktop.org/data/pkg/ios/](https://gstreamer.freedesktop.org/data/pkg/ios/)
2016-05-16 14:30:34 +00:00
Double click the package file and follow the instructions presented by
the install wizard. In case the system complains about the package not
being signed, you can control-click it and open to start the
installation. When you do this, it will warn you, but there is an option
to install anyway. Otherwise you can go to System Preferences → Security
and Privacy → General and select the option to allow installation of
packages from "anywhere".
The GStreamer SDK installs itself in your home directory, so it is
available only to the user that installed it. The SDK library is
installed to `~/Library/Developer/GStreamer/iPhone.sdk`. Inside this
directory there is the GStreamer.framework that contains the libs,
headers and resources, and there is a `Templates` directory that has
Xcode application templates for GStreamer development. Those templates
are also copied to `~/Library/Developer/Xcode/Templates` during
installation so that Xcode can find them.
### Configure your development environment
2016-05-16 14:30:34 +00:00
GStreamer is written in C, and the iOS API uses mostly Objective-C (and
C for some parts), but this should cause no problems as those languages
interoperate freely. You can mix both in the same source code, for
example.
#### Building the tutorials
2016-05-16 14:30:34 +00:00
The tutorials code are in the
2018-08-01 04:20:27 +00:00
[gst-docs](https://gitlab.freedesktop.org/gstreamer/gst-docs/) in the
`examples/tutorials/xcode iOS` folder. We recommend that you open the project
in Xcode, take a look at the sources and build them. This should
confirm that the installation works and give some insight on how
simple it is to mix Objective-C and C code.
2016-05-16 14:30:34 +00:00
#### Creating new projects
2016-05-16 14:30:34 +00:00
After installation, when creating a new Xcode project, you should see
the GStreamer project templates under the `Templates` category. OS X and
iOS have a different way of organizing libraries headers and binaries.
They are grouped into Frameworks, and that's how we ship GStreamer and
its dependencies for iOS (and OS X). Due to this difference from
traditional linux development, we strongly recommend using the SDK
templates, as they set a few variables on your project that allows Xcode
to find, use and link GStreamer just like in traditional linux
development. For example, if you don't use the templates, you'll have to
use:
```
#include <GStreamer/gst/gst.h>
2016-05-16 14:30:34 +00:00
```
instead of the usual:
```
2016-05-16 14:30:34 +00:00
#include <gst/gst.h>
```
Among some other things the template does, this was a decision made to
keep development consistent across all the platforms the SDK supports.
Once a project has been created using a GStreamer SDK Template, it is
ready to build and run. All necessary infrastructure is already in
place. To understand what files have been created and how they interact,
take a look at the [iOS tutorials](tutorials/ios/index.md).