All Projects → novoda → Ios Demos

novoda / Ios Demos

Examples of ios applications http://www.novoda.com/blog

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Ios Demos

Android Demos
Examples of Android applications
Stars: ✭ 1,963 (+2209.41%)
Mutual labels:  novoda, practice, open-source
Sqlite Provider
Extended SQLite functionality for Android
Stars: ✭ 312 (+267.06%)
Mutual labels:  novoda, open-source
dojos
This is where the Novoda team do all their hacking
Stars: ✭ 74 (-12.94%)
Mutual labels:  practice, novoda
Gradle Static Analysis Plugin
Easy setup of static analysis tools for Android and Java projects.
Stars: ✭ 398 (+368.24%)
Mutual labels:  novoda, open-source
Bintray Release
A helper for releasing from gradle up to bintray
Stars: ✭ 1,878 (+2109.41%)
Mutual labels:  novoda, open-source
No Player
Simplified Player wrapper for MediaPlayer and ExoPlayer
Stars: ✭ 182 (+114.12%)
Mutual labels:  novoda, open-source
Rxpresso
Easy Espresso UI testing for Android applications using RxJava.
Stars: ✭ 373 (+338.82%)
Mutual labels:  novoda, open-source
Gradle Android Command Plugin
Handy commands for testing Android on CI
Stars: ✭ 349 (+310.59%)
Mutual labels:  novoda, open-source
Merlin
Observes network connection status & gives callbacks
Stars: ✭ 536 (+530.59%)
Mutual labels:  novoda, open-source
Spikes
Where ideas & concepts are born & incubated
Stars: ✭ 540 (+535.29%)
Mutual labels:  novoda, open-source
Bonfire Firebase Sample
An app to discuss your favourite emojis. This is a sample app built with Firebase.
Stars: ✭ 564 (+563.53%)
Mutual labels:  novoda, open-source
Simple Chrome Custom Tabs
Easy integration of Chrome Custom Tabs into your project. Just connect it to your activity, and navigate to the external website styling your tab as you wish.
Stars: ✭ 131 (+54.12%)
Mutual labels:  novoda, open-source
Notils
Never again need a .utils. package yur scurvy sea dogs!
Stars: ✭ 126 (+48.24%)
Mutual labels:  novoda, open-source
Gradle Build Properties Plugin
Keep your secrets secret. External build properties support for your Gradle scripts.
Stars: ✭ 110 (+29.41%)
Mutual labels:  novoda, open-source
Accessibilitools
UI tools to help make your Android app accessible.
Stars: ✭ 81 (-4.71%)
Mutual labels:  novoda, open-source
Download Manager
A library that handles long-running downloads, handling the network interactions and retrying downloads automatically after failures
Stars: ✭ 482 (+467.06%)
Mutual labels:  novoda, open-source
Aosp.changelog.to
Generates a change log between different aosp tags. Based on the wonderful work of @alsutton
Stars: ✭ 12 (-85.88%)
Mutual labels:  novoda, open-source
Novoda
Common things for all Novoda's open source projects
Stars: ✭ 37 (-56.47%)
Mutual labels:  novoda, open-source
Dossier
Generate statistics from any repository that adheres to the conventional changelog standard
Stars: ✭ 81 (-4.71%)
Mutual labels:  open-source
Startbootstrap Sb Admin 2
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 9,038 (+10532.94%)
Mutual labels:  open-source

iOS demos

This is a collection of basic iOS examples created by Novoda. Most recent at the top.

  • Rick-and-Morty This is a project to be used for pairing sessions with potential new hires. The application is basically a TabViewController with 2 different tabs: "Rick" and "Morty". Each tab implements a CollectionViewController with a hardcoded data source. The implementation is really basic so there is plenty of refactoring potential.

  • Demo for the Apple TV This is a barebones demo of a content-delivery app for the Apple TV. It's not a native app but uses the TVMLKit framework's javascript templates to display content. All the content urls are hardcoded at the moment, rather than served from a json file. The app showcases different templates and also shows how to play video from both inside an element and in full-screen mode. It's based on Apple's sample code.

  • Adaptive iOS Design This demo is not a full application but simply shows different stages of getting a sample screen design to behave adaptively. It is part of a Hack & Tell I gave on adaptive iOS design. See linked pdf for the H&T slides.

  • Kaleidoscope (no tests) A simulated kaleidoscope. It follows the standard MVC pattern but uses no reactive programming. It also has no tests. I'm planning to rewrite it from scratch strictly following TDD to see what the differences are.

  • Calculator - Your First iOS App A very simple calculator app, with just enough interesting bits to give an idea of what an iOS app looks like from a developer's point of view. No, it has no error checking or unit tests, and doesn't follow the MVC pattern the way it should, but it's a start.

  • Earl Grey demo: A demo project showing how to use Earl Grey in an iOS project. Also includes our wrapper API which makes it easier to use (see the UITest file). Requires a gem install earlgrey && pod install first.

  • Cucumberish - BDD testing framework + sample app: Sample iOS app with the Cucumberish - BDD testing framework. Includes implementation of the UI tests on MiraclePillUITests target. Requires pod install before opening xcworkspace. It is part of the blog post.

  • CustomScheduler A custom scheduler to easily run tasks either in the back- or the foreground.

  • UIView+Autolayout extends UIView; Import this into your project to be able to use constraints programmatically in a straightforward way.

  • ARDemos: This repository is a basic iOS app using ARKit to allow adding of custom .dae or .scn files so that they can be viewed through a device in augmented reality. No prior knowledge of any code is required.

  • ARExperiment: Sample iOS app with the different demos . It is part of the blog post.

  • MVVM Example : Sample app using MVVM architecture. Currently in progress

How to add a new project

  • Pull from master and create a new branch with your project and/or changes

  • If you are creating a new project make sure that XCode did not create a .git folder inside of the project directory. Having a .git folder in the project folder will create conflicts with the .git folder that sits at the root of the repository — that is the correct place for it.

    You can check that by going inside the project folder on terminal and entering ls -la if there is a .git folder. If XCode created a .git folder at the root of the project, delete it by typing rm -rf .git in the Terminal while being inside your project folder.

  • Push your branch and make a PR. Your PR should have:

    1. Description of what the project is, or what changes you are making and why
    2. If you're adding a new project or making UI changes to an existing one, provide screenshots so the changes can be reviewed properly

    Someone will code review your PR as soon as possible. From there, it could be approved right away and merged — great job! 🎉 — or it may require some more work. Don't worry if that's the case, the team will work with you to make the necessary changes and get your PR merged!

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].