iOS Intro Workshop
iOS [Best_Wordpress_Gallery gallery_type="thumbnails" theme_id="1" gallery_id="43" sort_by="order" order_by="asc" show_search_box="0" search_box_width="180" image_column_number="5" images_per_page="30" image_title="none" image_enable_page="1" thumb_width="200" thumb_height="150" thumb_click_action="undefined" thumb_link_target="undefined" popup_fullscreen="0" popup_autoplay="0" popup_width="800" popup_height="500" popup_effect="fade" popup_interval="5" popup_enable_filmstrip="1" popup_filmstrip_height="70" popup_enable_ctrl_btn="1" popup_enable_fullscreen="1" popup_enable_info="1" popup_info_always_show="0" popup_enable_rate="0" popup_enable_comment="1" popup_hit_counter="0" popup_enable_facebook="1" popup_enable_twitter="1" popup_enable_google="1" popup_enable_pinterest="0" popup_enable_tumblr="0" watermark_type="none" watermark_link="http://web-dorado.com"]
Many thanks go to PulsePoint for providing the space of the event!
Special thanks go toΒ Michael Sanderson for giving such a great event!
-----------------------------------------
Meetup Announcement:
Michael Sanderson will show you how to make your first simplest iphone app.
Speaker:
Michael Sanderson first started programming for iPhone in 2011 as a hobby and now makes iOS apps full-time. He was a winner in May 2013 of the MTA/AT&T Hackathon, placing third with a team for the app AccessWay, which helps the blind and visually impaired get subway information.
Outline:
-Β How to use Socrata to export data in CSV format.
- How to use SQLite Manager to turn the CSV file into a SQLite database. SQLite Manager is a free manager that works through the Firefox browser, and so is available for all platforms, though only Macs can make iPhone apps. (https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/.) SQLite is an SQL version that's free and open-source and built into the iPhone. Edits and customizing of the database can also be done with SQLite manager, both with SQL directly and a graphical user interface.
- How to load the SQLite database into an iPhone app project, add the frameworks and set up the header files. For the lesson, Michael showed how to create a TableView, which is one of the most common kinds of iOS apps and has a template for Xcode.
- How to get data from the SQLite database with specific code: This includes
a) getting the database path and loading the database,
b) preparing the sql statement to get the data you want in the order you want,
c) "stepping" through the rows to put the data into variables,
d) "finalizing" the statement (necessary for performance reasons) and closing the database. These were simple steps that are easy to follow.
(Actually, because the SQLite steps are in the C language, anyone on any platform that uses SQLite can perform these steps.)
- Actually part of step c) in number 4 -- how to create model objects to easily save the data from the table so that it can be easily retrieved, and how to do so to display it in a table.
Preparation:
- Install Xcode (requires Mac, available on the Mac App Store, requires 10.7 and above)
- Install SQLite Manager for Firefox (https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/)
-----------------------------------------
Other Useful Info Link:
Reference:
Start Developing iOS Apps Today, including sections "Setup", "Jump Right In", "Tools", Language" and "App Design: Know the Core Objects of Your App"
https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapiOS/index.html#
//apple_ref/doc/uid/TP40011343
"iSO App Programming Guide", especially the sections "App Design Basics" and "Core App Objects"
https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgramming
Guide/AppDesignBasics/AppDesignBasics.html#//apple_ref/doc/uid/TP40007072-CH2-SW1
"Programming with Objective-C" especially "Types and Collections"
https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ProgrammingWith
ObjectiveC/Introduction/Introduction.html#//apple
_ref/doc/uid/TP40011210-CH1-SW1