How to merge groups of UIAnnotationView? - mapkit

I need to merge groups of MKAnnotationView (MQAnnotationView) like it is in Places of Photos app. How to do it? Is there any free solutions?

There are approaches for this on MapKit, or you could use the MapBox iOS SDK, which does this natively. More at http://www.mapbox.com/mapbox-ios-sdk/examples/marker-clustering/

Related

Capture multiple images in single interface using AVFoundation

I should able to capture multiple images (assume I am capturing passport for id proof) using iOS camera AVFoundation. I mean to say that I should have one interface to capture them one by one and merge them together. Is this possible in iOS, if yes is there any samples available for that.
Any help could be appreciated. Thank you
Can't completely get it. You can just take image from photostream one by one, you can take one photo and cut out 2 images, you can use imagepicker to call native camera, where is problem my friend?

How to use photos filters in iOS 7

Quick question here, I didn't find the answer around here or in apple docs. Is it possible to use the filters in camera mode like apple does in the camera application?
If you want to Apply filters on photo, selected from Photogallery or captured from Camera then You can refer to this link Apply Filter on Image
Ok it seems it is not possible to use Apple's filters options. That what I wanted to know. I'll check alternatives. Thank you.

HDR implementation in AVCaptureSession

Is there a convenient way to use HDR photo capture in iOS 6 or iOS 7 while capturing image using AVCaptureSession? I've searched through StackOverflow and couldn't find anything.
No, sadly, this feature is not exposed by the APIs currently. The only way would be to use the UIImagePickerController but it's probably not what you want.

Library for displaying image sets on an iPad

I'm looking for some cool libraries out there to display a bunch of images in my iPad application.
I think they are already out there, and I don't have to start from scratch, but I can't find some good ones.
Check out AQGridView as well.
Check out KTPhotoBrowser, I use it in a universal app, and it works pretty good.
Also, search Github : Photo Gallery for more open-source solutions.
See the answers to these questions on Stack Overflow:
How To Create A Gallery on iOS
float:left in objective-c
There are probably more questions about the same subject. Seek and you shall find.
I would simply create a web page with all the images, and then display it using UIWebView.
Did you want to do the coding yourself?
I found the Apple example "LazyTableImages" to be a useful and elegant way to display many images in a table view. It's important to a) keep the scrolling nice and smooth, and b) not freeze the user interface while downloading.
Have you tried using a UIImageView?

Best way to create a numeric pad as seen in Apples telephone app

What is the best way to create a numeric pad like the one Apple uses in the telephone app?
I would say just create an array of UIButton objects so that you can utilize UIControlStateSelected and the other button states by using different images for different states.
Another idea is to create something similar to that entire keypad in Photoshop, and then tile it into 12 images using http://www.mikelin.ca/blog/2010/06/iphone-splitting-image-into-tiles-for-faster-loading-with-imagemagick/
That would take some of the work out of get all the images to flow nicely together.
By the way, I just forgot about these until just a minute ago... they have some of the UI graphics from the iPhone and iPad in high res PSD file:
http://www.teehanlax.com/blog/2010/02/01/ipad-gui-psd/
and
http://www.teehanlax.com/blog/2010/08/12/iphone-4-gui-psd-retina-display/
and
http://www.teehanlax.com/blog/2010/06/14/iphone-gui-psd-v4/
I implemented a KeypadView, that is customizable via a delegate.
This github repository has the KeypadView and a delegate-implementation.
As I am still beginner in the field of iOS development I would appreciate, if you share your thoughts with me.