From e885af5595a0e292d100553926b40db6aec543db Mon Sep 17 00:00:00 2001 From: Sam Soffes Date: Fri, 27 May 2011 16:37:02 -0700 Subject: [PATCH] Updated readme --- Readme.markdown | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Readme.markdown b/Readme.markdown index 3f3ae9b..b4d9ca0 100644 --- a/Readme.markdown +++ b/Readme.markdown @@ -11,6 +11,8 @@ Currently it only supports unzipping. In the future, creating zip files will be ## Usage - NSString *path = @"path_to_your_zip_file"; - NSString *destination = @"path_to_the_folder_where_you_want_it_unzipped"; - [SSZipArchive unzipFileAtPath:path toDestination:destination]; +```objective-c +NSString *path = @"path_to_your_zip_file"; +NSString *destination = @"path_to_the_folder_where_you_want_it_unzipped"; +[SSZipArchive unzipFileAtPath:path toDestination:destination]; +```