iPhone and iPad development
84
Tips, Libs and more on iPhone and iPad development and ios
Curated by Vincent Demay
Follow
Scooped by Vincent Demay onto iPhone and iPad development
Scoop.it!

ShareKit : Drop-in Share Features for all iOS Apps

ShareKit : Drop-in Share Features for all iOS Apps | iPhone and iPad development | Scoop.it
Share URLs, images, text, and even files. ShareKit will only display the services that can handle the content you want to share.

Supported Services :
- Delicious
- Email
- Facebook
- Google Reader
- Instapaper
- Pinboard
- Read it later
- Tumblr
- Twitter











✔ Sources: https://github.com/ideashower/sharekit/
No comment yet.
Your new post is loading...
Scooped by Vincent Demay
Scoop.it!

Libraries For Easier Drawing Of Custom UI Elements, CoreImage Filter Enhancements And More

Libraries For Easier Drawing Of Custom UI Elements, CoreImage Filter Enhancements And More | iPhone and iPad development | Scoop.it

SimulatorRemoteNotifications is an iOS library to send (fake) remote notifications to the iOS simulator.

The library extends UIApplication by embedding a mini server that listen for udp packets containing JSON-formated payload.

Note that SimulatorRemoteNotifications does not send notification through Apple's Push Service.


To send a remote notification, send an udp packet to localhost:9930. You can do this from the terminal by using netcat:

echo -n '{"message":"message"}' | nc -4u -w1 localhost 9930

Vincent Demay's insight:

Source: https://github.com/acoomans/SimulatorRemoteNotifications

No comment yet.
Scooped by Vincent Demay
Scoop.it!

Do you use Interface Builder?

Do you use Interface Builder? | iPhone and iPad development | Scoop.it

Why @soffes Don't Use Interface Builder: “IB encourages bad practices, prevents reusability and slows your workflow” http://t.co/YXEInNDOxT

Vincent Demay's insight:

Everyone has a different insight regarding Interface Builder. I personally like it to speed up development.


What is your opinion?

Scott Davis's comment, May 15, 9:39 AM
This is a debate that rages on and on. The real answer is that there is no PROPER answer. If you prefer to define your controls in the code, that's great. Likewise for the IB fans.
jibees's comment, May 15, 10:08 AM
I agree!
Bertie Liu's comment, May 16, 9:40 PM
i guess the part for figure and graph processing in my brain is not functioning so well as others, so i tend to build up all interfaces with pure codes.
Scooped by Vincent Demay
Scoop.it!

How to make a iPhone video chat

How to make a iPhone video chat | iPhone and iPad development | Scoop.it

In a market flogged with social networking apps, Video chat is a killer weapon that you can wield to ace your rivals on the App store in one go. According to study, 93% of human interactions happen through visual interface.


What the hack. Need to chat face-to-face doesn’t need statistical justification. But how do they work? The question is more of design than of technical implementation in a world full of third parties. If you are scared of the word mammoth, you need to live with it because that’s the name of beast we are dealing with.

No comment yet.
Scooped by Vincent Demay
Scoop.it!

NSAttributedString parser taking an NSString and returns an NSAttributedString with markdown tags

NSAttributedString parser taking an NSString and returns an NSAttributedString with markdown tags | iPhone and iPad development | Scoop.it

This is a Markdown => NSAttributedString parser built on top of a flex parser. It takes an NSString and returns an NSAttributedString with markdown tags replaced by CoreText formatting attributes.

Vincent Demay's insight:

✔Sources: https://github.com/jverkoey/NSAttributedStringMarkdownParser

No comment yet.
Scooped by Vincent Demay
Scoop.it!

NJKWebViewProgress: progress for webview

NJKWebViewProgress: progress for webview | iPhone and iPad development | Scoop.it

NJKWebViewProgress is a progress interface library for UIWebView. Currently, UIWebView don't have official progress interface. You can implement progress bar for your in-app browser using this module.

No comment yet.
Scooped by Vincent Demay
Scoop.it!

DZWebBrowser: Web browser with progress bar

DZWebBrowser: Web browser with progress bar | iPhone and iPad development | Scoop.it

iPhone/iPad controller simple web browser with toolbar controls (backward, forward, stop loading and export options). Feel free to fork it and make it more interesting!


DZWebBrowser uses ARC and supports iOS6 and superior. Also support multiple orientations.

Vincent Demay's insight:

✔Sources: https://github.com/dzenbot/DZWebBrowser

No comment yet.
Scooped by Vincent Demay
Scoop.it!

WSCoachMarksView : displays user coach marks with a rectangular cutout over an existing UI

WSCoachMarksView : displays user coach marks with a rectangular cutout over an existing UI | iPhone and iPad development | Scoop.it

WSCoachMarksView is an iOS drop-in class that displays user coach marks with a rectangular cutout over an existing UI. This approach leverages your actual UI as part of the onboarding process for your user. Simply define an array of rectangles (CGRect) and their accompanying captions.

Vincent Demay's insight:

✔Sources: https://github.com/workshirt/WSCoachMarksView


No comment yet.
Scooped by Vincent Demay
Scoop.it!

MBPullDownController accepts two view controllers, which it presents one above the other

MBPullDownController accepts two view controllers, which it presents one above the other. The front view controller is configured to accept a pull interaction which it utilizes to show or hide back view controller.

Vincent Demay's insight:

✔Sources: https://github.com/matej/MBPullDownController

Scooped by Vincent Demay
Scoop.it!

wolfpack

Wolfpack is an image processing library for iOS and OS X. With the vast improvements to Core Image brought on by iOS 6, working with images on the iPhone and iPad has never been easier.

This is a total work in progress.


Support processing types:
  • blur: A gaussian blur
  • color: Apply a color blend
  • adjustment: Apply image adjustments like brightness, contrast, etc
  • curve: [Not Implemented Yet]
  • gradient: Supports a gradientType of either linear or radial
  • image: Overlay an image using a specific blending mode.
  • script: [Not Implemented Yet]
  • CoreImage: A free-form CoreImage action that you can use with any supported CIFilter.


Vincent Demay's insight:

✔Sourceshttps://github.com/justin/wolfpack

Nuno Martins's curator insight, May 6, 6:19 AM

Allways struggle to find nice filters...

Scooped by Vincent Demay
Scoop.it!

Bypass: Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS.

Bypass: Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS. | iPhone and iPad development | Scoop.it

We wanted to be able to take advantage of Markdown on mobile devices but all of the implementations that we found were either slow, feature incomplete or bot.


Bypass uses libsoldout to parse the Markdown and build a data structure. This data gets passed through the respective binding layer on each platform and is used to build the formatted text (Spanned strings on Android and Attributed Strings on iOS).

Vincent Demay's insight:

✔Sourceshttps://github.com/Uncodin/bypass

No comment yet.
Scooped by Vincent Demay
Scoop.it!

Colours-for-iOS: A beautiful set of 100 predefined UIColors, and UIColor methods, ready to use in your next iOS project.

Colours-for-iOS: A beautiful set of 100 predefined UIColors, and UIColor methods, ready to use in your next iOS project. | iPhone and iPad development | Scoop.it

Colours-for-iOS - A collection of predefined UIColors you can use in your apps. Just include the Colours.h/.m files and you'll have a slew of new colors to use.

Vincent Demay's insight:

✔Sourceshttps://github.com/bennyguitar/Colours-for-iOS

vishal dharmawat's curator insight, March 27, 12:48 AM

Handy code

Scott Davis's curator insight, April 1, 10:46 AM

Handy for those that use a lot of UIColor methods

Yiran Liu's curator insight, April 7, 6:25 AM

handy transfer

Scooped by Vincent Demay
Scoop.it!

AGGeometryKit - CATransform3D from quadrilateral animated

Create CATransform3D with quadrilaterals, useful math functions, calculate angle between views

Consists of
  • Additions for CGGeometry for common CGRect, CGSize and CGPoint calculations
  • AGQuad which helps you create CATransform3D from convex quadrilaterals (basically you can turn any rectangle into any convex four-cornered shape)
  • Some useful math functions
Vincent Demay's insight:

It's always hard to make 3D animations. Here is a framework to make it easier


✔Sources: https://github.com/hfossli/AGGeometryKit

No comment yet.
Scooped by Vincent Demay
Scoop.it!

[DEBUG] RRFPSBar: Show FPS Bar instead of StatusBar on iOS.

[DEBUG] RRFPSBar: Show FPS Bar instead of StatusBar on iOS. | iPhone and iPad development | Scoop.it
Vincent Demay's insight:

Usefull to debug


✔Sourceshttps://github.com/RolandasRazma/RRFPSBar

vishal dharmawat's curator insight, March 22, 11:59 PM

Show FBS Bar instead of StatusBar Bon iOS.

Scooped by Vincent Demay
Scoop.it!

FlatUIKit: a collection of iOS components styled with the "Flat UI"

FlatUIKit: a collection of iOS components styled with the "Flat UI" | iPhone and iPad development | Scoop.it

FlatUIKit is a collection of iOS components styled with the "Flat UI" aesthetic that we created while building Grouper for iPhone. Its design inspiration comes from Flat UI and Kyle Miller. Styling is implemented via categories on/drop-in replacements for existing UIKit components, so integrating it into your project is very straightforward.

Vincent Demay's insight:

Source: https://github.com/Grouper/FlatUIKit

Scott Davis's curator insight, May 16, 9:33 AM

This is a great tool for anyone looking to develop a more flat interface on the heels of iOS 7's more flat design.

Scooped by Vincent Demay
Scoop.it!

Open Source Drawer-Style Navigation Controller With Customizable Transitions

Open Source Drawer-Style Navigation Controller With Customizable Transitions | iPhone and iPad development | Scoop.it

An other swipe style navigator with customizable transition

Vincent Demay's insight:

Source: https://github.com/mutualmobile/MMDrawerController

Scott Davis's comment, May 15, 9:41 AM
This appears to be one of the best drawer/sliding view controllers to date in the Open Source community.
Scott Davis's curator insight, May 15, 9:41 AM

This is the best one I have seen so far!

Scooped by Vincent Demay
Scoop.it!

CommandMaster is designed as an iOS port of Windows Phone 8's App Bar

CommandMaster is designed as an iOS port of Windows Phone 8's App Bar | iPhone and iPad development | Scoop.it

CommandMaster is a singleton instance, meaning there is only one instance of the bar throughout the entire application's lifecycle. Because of this, it is ideal to add the CommandMaster.h into -Prefix.pch file, that way you do not need to import it into all Classes, as it is added on compile time and used everywhere.

Vincent Demay's insight:

✔Sources: https://github.com/asm09fsu/CommandMaster


No comment yet.
Scooped by Vincent Demay
Scoop.it!

Capture a Signature on iOS

Capture a Signature on iOS | iPhone and iPad development | Scoop.it

"The Square Engineering Blog has a great article on Smoother Signatures for Android, but I didn't find anything specifically about iOS. So, what is the best way to capture a users signature on an iOS device?


Although I didn't find any articles on signature capture, there are good implementations on the App Store. My target user experience was the iPad application Paper by 53, a drawing application with beautiful and responsive brushes.


All code is available in the Github repository: SignatureDemo."

Vincent Demay's insight:

✔Sources: https://github.com/jharwig/SignatureDemo

No comment yet.
Scooped by Vincent Demay
Scoop.it!

MZDayPicker: An iOS day picker to allow users to select date

MZDayPicker: An iOS day picker to allow users to select date | iPhone and iPad development | Scoop.it

An iOS day picker to allow users to select date

Vincent Demay's insight:

✔Sources: https://github.com/m1entus/MZDayPicker

No comment yet.
Scooped by Vincent Demay
Scoop.it!

BOOL / bool / Boolean / NSCFBoolean

BOOL / bool / Boolean / NSCFBoolean | iPhone and iPad development | Scoop.it

We've talked before about the philosophical and technical concerns of nothingness in programming. This week, our attention turns to another fundamental matter: Truth.
Truth. Vēritās.

Vincent Demay's insight:

Another fabulous tutorial from NSHipster

jibees's comment, April 9, 9:39 AM
made me think http://nshipster.com/nil/
vishal dharmawat's curator insight, April 16, 1:19 AM
BOOL/bool/Boolean/NSCFBoolean
Scooped by Vincent Demay
Scoop.it!

Helios.io: open-source framework for backend

Helios.io: open-source framework for backend | iPhone and iPad development | Scoop.it

Helios is an open-source framework that provides essential backend services for iOS apps (Helios: Open-source framework providing essential backend services for iOS apps (Data sync, user accounts) http://t.co/l4ZKsYsZFr

Carlo de Carolis's curator insight, April 7, 12:37 PM

FEATURES


Data Synchronization

Read and write between the client and server over a conventional REST webservice, which can even be automatically-generated from a Core Data model.


Push Notification

A device registration endpoint, paired with an easy-to-use admin interface that lets you manually send push notifications to selected devices.


In-App Purchases

Track and verify all of the transactions made in your application.


Passbook

Everything you need to interface as an Passbook webservice, including pass registration, updating, and notifications.


Logging & Analytics

A powerful way to capture stats and trends from app installations.

Scooped by Vincent Demay
Scoop.it!

ios-quayboard - a keyboard accessory

ios-quayboard - a keyboard accessory | iPhone and iPad development | Scoop.it

ios-quayboard - A keyboard accessory that blends in with the default iOS keyboard

Vincent Demay's insight:

✔Sources: https://github.com/jellybeansoup/ios-quayboard

No comment yet.
Scooped by Vincent Demay
Scoop.it!

Auto Doc

Auto Doc | iPhone and iPad development | Scoop.it

With Appledoc + Jenkins it is fabulously easy to have your documentation be automatically generated and uploaded to a documentation site. Let me give you a quick guided tour about the individual parts of our setup. The final result you can admire on our new Cocoanetics Documentation Site.

No comment yet.
Suggested by John Smith
Scoop.it!

Make realtime multiplayer games using cocos2D

Make realtime multiplayer games using cocos2D | iPhone and iPad development | Scoop.it
Cocos2D is a popular open source framework for building iPhone games. Its quite powerful and can be used to develop a wide range of 2D games. Here is a list of some of the apps on the appstore developed using Cocos2D.
No comment yet.
Scooped by Vincent Demay
Scoop.it!

KGStatusBar: A minimal status bar for iOS. Similair to the status bar seen in the MailBox app.

KGStatusBar: A minimal status bar for iOS. Similair to the status bar seen in the MailBox app. | iPhone and iPad development | Scoop.it

A minimal status bar for iOS. Similair to the status bar seen in the MailBox app. It covers the top status bar and appears like the message is embedded within.

Vincent Demay's insight:

✔Sourceshttps://github.com/kevingibbon/KGStatusBar

vishal dharmawat's curator insight, March 27, 12:57 AM

customto custom status bar to cover the top status bar and appears like the message is embedded within.

Excora's comment, April 29, 7:25 AM
This is not allowed by the App Store Review
Scooped by Vincent Demay
Scoop.it!

CollapseClick: functions like a UITableView, except you can collapse and open cells on a click

CollapseClick: functions like a UITableView, except you can collapse and open cells on a click | iPhone and iPad development | Scoop.it

A collapsible list that functions like a UITableView, except you can collapse and open cells on a click. Feed it UIViews for what is shown when each cell is open. Works via delegation similar to UITableView. This is a UIScrollView Subclass.

Vincent Demay's insight:

✔Sources: https://github.com/bennyguitar/CollapseClick

vishal dharmawat's curator insight, March 22, 11:56 PM

Uitableview with collapsible cells

Aalok Parikh's curator insight, March 23, 4:41 AM

A good custome control. ATM I need it for my next project.