Thumbnail Based MapView Annotation Aasim Naseem, May 20, 2013 | Read Count: 12,476May 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: 282Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 493Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 463Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 493When Not To Use Agile: 5 Signs You Need a Different Approach iOS iosJPSThumbnailAnnotationMapKit
iOS “Redundant Binary Upload” Issue on iTunesConnect September 13, 2014 | Read Count: 11,491April 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 Pattern Colors are Not Supported by the iPhone SDK Prior to 3.0 February 4, 2011 | Read Count: 14,459May 5, 2025 Category: My Tutorials > iOSLast day i opened and compiled an old project of iPhone; I’m using Xcode 3.2.5 with iOS 4.2 on Mac OS X 10.6.6; When i complied that project I got the following error in multiple xib files Pattern colors are not supported by the iPhone SDK… Read More
iOS Substrings from NSString March 13, 2012 | Read Count: 13,484April 9, 2025 Category: My Tutorials > iOSHello iOS geeks … Here is a small tip for getting a substring from NSString; NSString class provide following methods for splitting a string; – (NSString *)substringFromIndex:(NSUInteger)from; – (NSString *)substringToIndex:(NSUInteger)to; – (NSString *)substringWithRange:(NSRange)range; – (NSRange)rangeOfString:(NSString *)<em>aString;</em> Following code will demonstrate itself; Author Profile Aasim Naseem Hey, Thanks for your interest…. Read More