Thumbnail Based MapView Annotation Aasim Naseem, May 20, 2013 | Read Count: 12,528May 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: 346Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 581Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 534Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 561When Not To Use Agile: 5 Signs You Need a Different Approach iOS iosJPSThumbnailAnnotationMapKit
iOS Local history/revision of files in Xcode February 24, 2013 | Read Count: 12,547April 9, 2025 Category: My Tutorials > iOSHello friends .. hope things are going good on your desk .. Last night I was going through my tweets, and there I found something really interesting; I crawled it for few minutes and after reading some blog posts I came to know about a very useful… Read More
iOS 100+ Reasons of App Rejection for AppStore; March 15, 2012 | Read Count: 13,452April 9, 2025 Category: My Tutorials > iOS What !!! Rejected ?? but why ??? oh Damn it … After a tiring days and sleepless nights, busy weekends and thoughtful breaks, getting rejection from AppStore is worst; No one wants to see a red label, against his/her app over itunes, saying rejected; There… Read More
iOS MonoTouch: Building iPhone Apps Using C# and .NET September 25, 2009 | Read Count: 16,493May 5, 2025 Category: My Tutorials > iOSNovell has released MonoTouch 1.0, what it claims is the industry’s first solution for developing applications for the iPhone and iPod Touch using the Microsoft .NET Framework, including C# and other .NET programming languages. Until now, developers primarily built iPhone applications using C and Objective-C. With MonoTouch, the… Read More