Thumbnail Based MapView Annotation Aasim Naseem, May 20, 2013 | Read Count: 12,489May 8, 2025 Category: My Tutorials > iOSJPSThumbnailAnnotation is an open-source library to customize your MapKit annotation view for displaying image thumbnails along with title and subtitle. Here is a quick screenshot from my sample project using this library. Setup Its free, and open source; You need to download JPSThumbnailAnnotation library from github and drag/drop the directory into your project; You will have following six files in library; JPSThumbnail.h JPSThumbnailAnnotation.h JPSThumbnailAnnotation.m JPSThumbnailAnnotationView.h JPSThumbnailAnnotationView.m JPSThumnail.m Usage import JPSThumbnailAnnotation.h and add the following line of code to add one annotation on your map view JPSThumbnail *faisaMosqueAnnotation = [[JPSThumbnail alloc] init]; faisaMosqueAnnotation.image = [UIImage imageNamed:@"faisalMasjid.jpg"]; faisaMosqueAnnotation.title = kFaisalMasjidTitle; faisaMosqueAnnotation.subtitle = kFaisalMasjidSubTitle; faisaMosqueAnnotation.coordinate = CLLocationCoordinate2DMake(33.72976, 73.03698); faisaMosqueAnnotation.disclosureBlock = ^{ NSLog(@"Faisal Mosque selected"); }; JPSThumbnailAnnotation *annotation = [[JPSThumbnailAnnotation alloc] initWithThumbnail:faisaMosqueAnnotation]; [mapView addAnnotation:annotation]; You are good to go now .. You can download a sample project from here. Happy Programming .. (: Author Profile Aasim Naseem Hey, Thanks for your interest. I’m a PMP, AWS Solutions Architect, and Scrum Master certified professional with 17+ years of hands-on experience leading projects, building teams, and helping organizations deliver software solutions better, faster, and smarter. Outside of work, I’ve got a deep curiosity for history — especially ancient civilizations like Egypt. I also enjoy reflecting on the everyday moments that shape how we live and work. This blog is my space to share insights, lessons, and thoughts from both my professional journey and personal interests. Thanks for reading — and I hope you will find something here that matches your interest. Latest entries IslamJune 6, 2025 | Read Count: 305Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 507Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 484Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 510When Not To Use Agile: 5 Signs You Need a Different Approach iOS iosJPSThumbnailAnnotationMapKit
iOS Storage Issue with iOS-5 And iCloud; February 2, 2012 | Read Count: 13,489April 27, 2025 Category: My Tutorials > iOSHello everyone .. Now a days, we are noticing that many people are getting rejection from AppStore due to storage issue; I looked into this issue and here are my findings regarding iOS-5 and iCloud; When we install our application in device, we have three main directories… Read More
iOS “Redundant Binary Upload” Issue on iTunesConnect September 13, 2014 | Read Count: 11,571April 9, 2025 Category: My Tutorials > iOSHey Devs If you are having following issue on new interface of iTunesConnect “Redundant Binary Upload. There already exists a binary upload with build version ‘1.0’ for train ‘1.0’” then you are not alone like forever alone guy. Like me and you, many others are facing… Read More
iOS Code Chunks – iOS February 5, 2011 | Read Count: 14,415April 27, 2025 Category: My Tutorials > iOSHello Everyone; Hope weekend is going well. Today’s menu is really simple; I will give you some tips regarding iPhone application development. I used them recently, so want to share with you people. Here they are. 1. Screen Resolution At the time of this post, the… Read More