All Projects โ†’ parse-community โ†’ Parse Sdk Ios Osx

parse-community / Parse Sdk Ios Osx

Licence: other
The Objective-C iOS | macOS | watchOS | tvOS SDK for the Parse Platform

Programming Languages

objective c
16641 projects - #2 most used programming language
swift
15916 projects
ruby
36898 projects - #4 most used programming language
javascript
184084 projects - #8 most used programming language
Handlebars
879 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Parse Sdk Ios Osx

Hackers
Hackers is an elegant iOS app for reading Hacker News written in Swift.
Stars: โœญ 513 (-81.6%)
Mutual labels:  hacktoberfest, cocoapods
Nextgrowingtextview
๐Ÿ“ The next in the generations of 'growing textviews' optimized for iOS 8 and above.
Stars: โœญ 1,540 (-44.76%)
Mutual labels:  hacktoberfest, cocoapods
Bow
๐Ÿน Bow is a cross-platform library for Typed Functional Programming in Swift
Stars: โœญ 538 (-80.7%)
Mutual labels:  hacktoberfest, cocoapods
Faceaware
An extension that gives UIImageView the ability to focus on faces within an image.
Stars: โœญ 3,004 (+7.75%)
Mutual labels:  hacktoberfest, cocoapods
Amplitude Ios
Native iOS/tvOS/macOS SDK
Stars: โœญ 216 (-92.25%)
Mutual labels:  hacktoberfest, cocoapods
Parse Server
API server module for Node/Express
Stars: โœญ 19,165 (+587.41%)
Mutual labels:  hacktoberfest, parse-platform
Loadingshimmer
An easy way to add a shimmering effect to any view with just one line of code. It is useful as an unobtrusive loading indicator.
Stars: โœญ 1,180 (-57.68%)
Mutual labels:  hacktoberfest, cocoapods
Parse Dashboard
A dashboard for managing your Parse Server Apps
Stars: โœญ 3,534 (+26.76%)
Mutual labels:  hacktoberfest, parse-platform
Countrypicker
A simple, customizable Country picker for picking country or dialing code. ๐Ÿ‡ฎ๐Ÿ‡ณ ๐Ÿ‡ฏ๐Ÿ‡ต ๐Ÿ‡ฐ๐Ÿ‡ท ๐Ÿ‡ฉ๐Ÿ‡ช ๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡ซ๐Ÿ‡ท ๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ‡ฎ๐Ÿ‡น ๐Ÿ‡ท๐Ÿ‡บ ๐Ÿ‡ฌ๐Ÿ‡ง
Stars: โœญ 174 (-93.76%)
Mutual labels:  hacktoberfest, cocoapods
Parse Sdk Android
The Android SDK for the Parse Platform
Stars: โœญ 1,806 (-35.22%)
Mutual labels:  hacktoberfest, parse-platform
Badgehub
A way to quickly add a notification badge icon to any view. Make any view of a full-fledged animated notification center.
Stars: โœญ 592 (-78.77%)
Mutual labels:  hacktoberfest, cocoapods
Simplecheckbox
A simple Checkbox
Stars: โœญ 253 (-90.93%)
Mutual labels:  hacktoberfest, cocoapods
Eureka
Elegant iOS form builder in Swift
Stars: โœญ 11,345 (+306.92%)
Mutual labels:  hacktoberfest, cocoapods
Nef
๐Ÿ’Š steroids for Xcode Playgrounds
Stars: โœญ 226 (-91.89%)
Mutual labels:  hacktoberfest, cocoapods
ParseFacebookUtils-iOS
A set of utilities to integrate Facebook with the Parse iOS/tvOS SDK.
Stars: โœญ 92 (-96.7%)
Mutual labels:  parse-platform, parse-ios
Beautiful Open
Handsome sites for open source software
Stars: โœญ 257 (-90.78%)
Mutual labels:  hacktoberfest
Pywhatsapp
Python Automation using selenium & Scheduling of messages and media
Stars: โœญ 257 (-90.78%)
Mutual labels:  hacktoberfest
Netescapades.aspnetcore.securityheaders
Small package to allow adding security headers to ASP.NET Core websites
Stars: โœญ 256 (-90.82%)
Mutual labels:  hacktoberfest
Kube Hunter
Hunt for security weaknesses in Kubernetes clusters
Stars: โœญ 3,399 (+21.92%)
Mutual labels:  hacktoberfest
Openlibrary
One webpage for every book ever published!
Stars: โœญ 3,311 (+18.76%)
Mutual labels:  hacktoberfest

parse-repository-header-sdk-objc

iOS ยท iPadOS ยท macOS ยท watchOS ยท tvOS


Build Status CI Build Status Release Build Status Carthage Snyk Badge Coverage auto-release

Platforms Carthage

Pod

Backers on Open Collective Sponsors on Open Collective License Forum Twitter


A library that gives you access to the powerful Parse Server backend from your iOS, iPadOS, macOS, watchOS and tvOS app. For more information about the Parse Platform and its features, see the public documentation. Check out some of the apps using Parse.


Getting Started

To use parse, head on over to the releases page, and download the latest build. And you're off!. Take a look at the public documentation & API and start building.

Notice the API docs aren't totally up to date when it comes to latest Swift signature of the methods and more importantly regarding Push Notifications which are no longer supported by Parse server, keep an eye on its repo

Other Installation Options

CocoaPods

Add the following line to your Podfile:

pod 'Parse'

Run pod install, and you should now have the latest parse release.

If you wish to use the Facebook or Twitter utils or ParseUI, you can now leverage Cocoapods 'subspecs'

pod 'Parse/FacebookUtils'
pod 'Parse/TwitterUtils'
pod 'Parse/UI'

Note that in this case, the Parse framework will contain all headers and classes, so you just have to use:

import Parse
@import Parse;

Carthage

Add the following line to your Cartfile:

github "parse-community/Parse-SDK-iOS-OSX"

Run carthage update, and you should now have the latest version of Parse SDK in your Carthage folder.

This will also compile the ParseTwitterUtils, ParseFacebookUtilsV4 as well as ParseUI frameworks.

Compiling for yourself

If you want to manually compile the SDK, clone it locally, and run the following commands in the root directory of the repository:

# To pull in extra dependencies (Bolts and OCMock)
git submodule update --init --recursive

# To install bundler
gem install bundler

# To install all the gems via bundler
bundle install

# Build & Package the Frameworks
bundle exec rake package:frameworks

Compiled frameworks will be in multiple archives inside the build/release folder:

  • Parse-iOS.zip
  • Parse-macOS.zip
  • Parse-tvOS.zip
  • Parse-watchOS.zip
  • ParseFacebookUtils-iOS.zip
  • ParseFacebookUtils-tvOS.zip
  • ParseTwitterUtils-iOS.zip
  • ParseUI.zip

Using Parse as a sub-project

You can also include parse as a subproject inside of your application if you'd prefer, although we do not recommend this, as it will increase your indexing time significantly. To do so, just drag and drop the Parse.xcodeproj file into your workspace. Note that unit tests will be unavailable if you use Parse like this, as OCMock will be unable to be found.

How Do I Contribute?

We want to make contributing to this project as easy and transparent as possible. Please refer to the Contribution Guidelines.

Dependencies

We use the following libraries as dependencies inside of Parse:

  • Bolts, for task management.
  • OCMock, for unit testing.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].