iPhone and iPad development
78
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!

PSCollectionView : Pinterest style scroll view

PSCollectionView : Pinterest style scroll view | iPhone and iPad development | Scoop.it

It's a Pinterest style scroll view designed to be used similar to a UITableView.


It supports Portrait and Landscape orientations.


I built this as a hack to show my friends. Any suggestions or improvements are very welcome!


Coming soon... A fully functional demo app.

Vincent Demay's insight:

Update a new version ARC compliant is available here : 


✔Sources: https://github.com/ptshih/PSCollectionView/tree/arc


No comment yet.
Your new post is loading...
Scooped by Vincent Demay
Scoop.it!

RNGridMenu: a menu view with field depth and bounce animation - inspired by Mailbox

RNGridMenu: a menu view with field depth and bounce animation - inspired by Mailbox | iPhone and iPad development | Scoop.it

A grid based menu view with field depth and bounce animation: inspired by Mailbox, and extended for multiple needs. I created this project out of a stint of boredom. This control is customizable to a degree, but kept simple so you can take it and spin your own subclass or fork out of it.

Vincent Demay's insight:

Source: https://github.com/rnystrom/RNGridMenu


No comment yet.
Suggested by jerometonnelier
Scoop.it!

PaperFoldGallery : displays multiple views in a paginated UIScrollView using PaperFold library

PaperFoldGallery : displays multiple views in a paginated UIScrollView using PaperFold library | iPhone and iPad development | Scoop.it
PaperFoldGallery for iOS

 

The first level is a paginated UIScrollView that displays views in each page. The second level contains 2 PaperFold views that are folded/unfolded/hidden depending on the scroll view offset. These views show a folded screenshot of the views below it, and are hidden once the UIScrollView snaps to page.

The subviews can be any UIView subclasses, so it can be static view, or other views like UITableView.

The library takes a screenshot often to get the state of the view below it. If you are using static views, you can improve the unfolding performance by providing screenshots.

Vincent Demay's insight:

Source: https://github.com/honcheng/PaperFoldGallery


jerometonnelier's comment, June 13, 8:55 AM
lol my bad, I thought I published it on my scoop page :D :D
Vincent Demay's comment, June 13, 8:56 AM
but it's a nice post, as usually on your scoop page :)
jerometonnelier's comment, June 13, 9:07 AM
lol indeed ;-)
Scooped by Vincent Demay
Scoop.it!

Open Source Control For Easy Customizable Gesture Controlled Table View Cells

Open Source Control For Easy Customizable Gesture Controlled Table View Cells | iPhone and iPad development | Scoop.it

RMSwipeTableViewCell is a drop-in UITableViewCell subclass that supports pan gestures as seen in apps such as Clear, Mailbox, Sparrow and many more.


RMSwipeTableViewCell allows for easy subclassing to customize the cell to match your needs. The class exposes useful class methods and uses delegate callbacks to handle actions in your UITableViewController. RMSwipeTableViewCell is compatible with iOS 5 and higher!

Vincent Demay's insight:

Source: https://github.com/runmad/RMSwipeTableViewCell


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

KxMenu: a vertical popup menu

KxMenu: a vertical popup menu | iPhone and iPad development | Scoop.it
Vincent Demay's insight:

Source: https://github.com/kolyvan/kxmenu

No comment yet.
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!

PRAugmentedReality - ios Augmented Reality Lib.

PRAugmentedReality - ios Augmented Reality Lib. | iPhone and iPad development | Scoop.it

An Augmented reality view out-of-the-box with customizable AR Overlays

Vincent Demay's insight:

Source: https://github.com/promet/PRAugmentedReality

Video: http://www.youtube.com/watch?feature=player_embedded&v=vBc8L1zr0kk

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

Free iOS UI Templates With A Sleek Minimalist Flat Style

Free iOS UI Templates With A Sleek Minimalist Flat Style | iPhone and iPad development | Scoop.it
Design,Featured iPhone Development Resources,Objective-CLast month I mentioned an open source library allowing you to create various user interface elements with a flat style.
Dan Kamminga's comment, June 11, 6:14 PM
.
Scooped by Vincent Demay
Scoop.it!

iOS-NBUKit: Component For Working With Photos Providing A Camera View, Gallery, Image Filter View, And More

iOS-NBUKit: Component For Working With Photos Providing A Camera View, Gallery, Image Filter View, And More | iPhone and iPad development | Scoop.it

Customizable camera, assets, image editing, gallery, picker and UIKit subclasses.



Vincent Demay's insight:

Source: https://github.com/CyberAgent/iOS-NBUKit

rickbrown's curator insight, June 6, 3:33 AM

Samsung Galaxy S4 is the best Android mobile phone in the world and iPhone 5 is giving hard competition in terms of every features offered by the device, lets not talk about the whole features in the galaxy S4 and iPhone 5. We will go with the camera quality of these two phones, now these days camera is becoming integral part of any mobile phones as well for the users, which results into the improvement of the camera quality in upcoming mobile phones.

We always use our mobile phone camera in two condition: indoor & outdoor

Now lets have a look on the camera performance of these two phones on these two situations,

iPhone 5 struggled with its famous 'purple haze’ issue on which Apple responds to the issue that this is the normal behavior of the camera when light is coming out of the frame, Samsung Galaxy S4 purple haze is slightly better than the iPhone 5.

Most of the memories capturing will take place indoor either home or office, both these phones trouble in focusing the object with flash but Galaxy S4 is slightly better than the iPhone 5.

Panorama

Panorama is the physical representation of physical space in three dimensional model, these images are beautiful and print worthy. Samsung Galaxy managed to capture nearly 360 degree while iPhone 5 goes to 180 degree, iPhone 5 Panorama is over 7 MB while Galaxy S4 goes to 16 MB.

About Rick Brown (Mobiers.com)

Rick Brown is mobiers associate editor for cell phone and smartphone news and reviews, he is also an innovative iOS developer, who advises business organizations in iPhone application development and help in hiring iPhone Apps Developer.

http://storify.com/rickbrown12/why-samsung-galaxy-s4-camera-is-better-than-iphone

Scooped by Vincent Demay
Scoop.it!

An UIAlertView replacement with block syntax and fancy transition styles

An UIAlertView replacement with block syntax and fancy transition styles | iPhone and iPad development | Scoop.it

SIAlertView - An UIAlertView replacement with block syntax and fancy transition styles:


Features
  • use window to present
  • happy with rotation
  • block syntax
  • styled transitions
  • queue support
  • UIAppearance support
Vincent Demay's insight:

Source: https://github.com/Sumi-Interactive/SIAlertView

No comment yet.
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.

Leonard Okereke's curator insight, May 30, 6:17 PM

The new software devoloped by apple is goin to be a re-designed look.

Mike Maxwell's curator insight, May 31, 9:37 PM

A great looking UIAlertView replacement. Looking to use it in one of my apps soon!

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.

Mike Maxwell's curator insight, May 31, 9:39 PM

Really hoping I can get up to speed on Ruby enough to give this a legit try.

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.