SlideShare a Scribd company logo
iOS Programming
Objective C + iOS
Profile
Ankit Desai
 Ph.D. Scholar, IET, Ahmedabad University
 Education: M. Tech. CE, B.E. I. T.
 Experience: 7.5 Years (Academic and Research)
 Research Interest: IoT, Big Data Analytics,
Machine Learning, Data Mining.
Sqlite Example GUI
Drag -> 3 TextBoxes, 3 buttons and 3 labels
Create -> 2 properties, 3 IBOutlets, 3 IBActions
Project Properties -> Build Phases -> Link Binary with Libraries ->type (sql) -> add
libsqlite3.dylib
Add library
Create/open table on load
-(void) showUIAlertWithMessage:(NSString*)message andTitle:(NSString*)title{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message
delegate:self cancelButtonTitle:@"OK” otherButtonTitles:nil];
[alert show];
}
General Alter method
Insert Query
Select Query
Delete Query
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch* touch = [[event allTouches] anyObject];
if([_phone isFirstResponder] && [touch view] != _phone{
[_phone resignFirstResponder];
}
[super touchesBegan:touches withEvent:event];
}
#import <sqlite3.h> In .h file
Output
Insert Record
Output
Select Output Select Output
Output
Delete Query
Thank you
 For further communication or queries:
 Contact me:
 desaiankitb@gmail.com
 www.fb.com/desaiankitb

More Related Content

PPTX
Presentation10 view navigation
PPTX
Presentation14 audio play
PPTX
Presentation2 gesture control
PPTX
Presentation3 actionsheet alertview
PPTX
Presentation7 segment control
PPTX
Presentation1 password
PPTX
Presentation4 date picker
PPTX
Presentation6 ui image_view
Presentation10 view navigation
Presentation14 audio play
Presentation2 gesture control
Presentation3 actionsheet alertview
Presentation7 segment control
Presentation1 password
Presentation4 date picker
Presentation6 ui image_view

Viewers also liked (7)

PPTX
Presentation8 silder switch_progress
PPTX
Presentation15 parse xml
PPTX
Hadoop installation
PPTX
java code and document security
PPTX
java Jdbc
PPTX
java drag and drop and data transfer
PPTX
Java Beans
Presentation8 silder switch_progress
Presentation15 parse xml
Hadoop installation
java code and document security
java Jdbc
java drag and drop and data transfer
Java Beans
Ad

Similar to Presentation11 sq lite (20)

PDF
iPhone dev intro
PDF
Beginning to iPhone development
KEY
SQLite Techniques
PPT
Ios - Introduction to platform & SDK
PPT
iphone presentation
KEY
SQLite Techniques
PDF
iOS Application Security
PDF
iOS Development - Offline Class for Jasakomer
PPT
Ios-training-institute-in-mumbai
PPT
Ios development
PPTX
iOS,From Development to Distribution
PPT
Ios - Intorduction to view controller
PDF
Ios-training-institute-in-mumbai
PPTX
New to native? Getting Started With iOS Development
PPT
Ios training-cum-course-in-mumbai-
KEY
Intro To iOS
PDF
Write native iPhone applications using Eclipse CDT
KEY
Objective-C Crash Course for Web Developers
PDF
"Intro to iOS Development" - Derek Fernholz, South Dakota Code Camp 2012
PDF
MFF UK - Introduction to iOS
iPhone dev intro
Beginning to iPhone development
SQLite Techniques
Ios - Introduction to platform & SDK
iphone presentation
SQLite Techniques
iOS Application Security
iOS Development - Offline Class for Jasakomer
Ios-training-institute-in-mumbai
Ios development
iOS,From Development to Distribution
Ios - Intorduction to view controller
Ios-training-institute-in-mumbai
New to native? Getting Started With iOS Development
Ios training-cum-course-in-mumbai-
Intro To iOS
Write native iPhone applications using Eclipse CDT
Objective-C Crash Course for Web Developers
"Intro to iOS Development" - Derek Fernholz, South Dakota Code Camp 2012
MFF UK - Introduction to iOS
Ad

Recently uploaded (20)

PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PPTX
Weekly report ppt - harsh dattuprasad patel.pptx
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
history of c programming in notes for students .pptx
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
PDF
Salesforce Agentforce AI Implementation.pdf
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
How AI/LLM recommend to you ? GDG meetup 16 Aug by Fariman Guliev
PPTX
assetexplorer- product-overview - presentation
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Complete Guide to Website Development in Malaysia for SMEs
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Advanced SystemCare Ultimate Crack + Portable (2025)
Weekly report ppt - harsh dattuprasad patel.pptx
CHAPTER 2 - PM Management and IT Context
history of c programming in notes for students .pptx
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Oracle Fusion HCM Cloud Demo for Beginners
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
Salesforce Agentforce AI Implementation.pdf
Reimagine Home Health with the Power of Agentic AI​
How AI/LLM recommend to you ? GDG meetup 16 Aug by Fariman Guliev
assetexplorer- product-overview - presentation
Navsoft: AI-Powered Business Solutions & Custom Software Development
wealthsignaloriginal-com-DS-text-... (1).pdf
Design an Analysis of Algorithms I-SECS-1021-03
Complete Guide to Website Development in Malaysia for SMEs
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Design an Analysis of Algorithms II-SECS-1021-03

Presentation11 sq lite