SlideShare a Scribd company logo
Cloud
InteractionDesign
Android
iOS
Android L09 - Windows Phone and iOS
Android L09 - Windows Phone and iOS
iPad Pro
Xcode
Model-View-Controller (MVC)
C
Android L09 - Windows Phone and iOS
Android L09 - Windows Phone and iOS
Objective-C
Data Types
BOOL
id
nil
...
Foundation Data Types
• NSInteger
• NSPoint
• NSRect
• NSSize
• NSUInteger
• ...
Funcation Calls - Messages
Instance Methods
Messages
Swift
Swift
let  tutorialTeam =  60  
let  editorialTeam =  17  
let  totalTeam =  tutorialTeam +  editorialTeam
//  Explicit  vs.  Inferred  Typing
let  tutorialTeam:   Int =  60
let  tutorialTeam =  60
//  functions
func powerOfTwo(sum:   Double)  -­‐>  Double  
{  return  sum  *  sum}
iOS Dev Center
https://developer.apple.com/devcenter/ios/
Coordinate System
WindowsPhone
Windows Phone 8
Android L09 - Windows Phone and iOS
Android L09 - Windows Phone and iOS
Emulator
.NET Support
MVVM
Model-View View-Model
MVVMtargeted at modern UI development platforms
which support Event-driven programming
MVVMHTML5, WPF, Silverlight, … etc.
MVVMmore at https://en.wikipedia.org/wiki/MVVM
Binding Awesomeness
<TextBlock Text="{Binding  Message}"  Margin="10“
TextWrapping="Wrap"  FontSize="18"  Width="350"  />
Android L09 - Windows Phone and iOS
Expression Blend
Android L09 - Windows Phone and iOS
Android L09 - Windows Phone and iOS
Binding Techniques - Templates
<ListBox Name="lstTwitter"  Margin="12,78,8,78">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal"  Height="110"  Margin="-­‐10,-­‐10,-­‐10,-­‐10">
<TextBlock Text="{Binding  Message}"  Margin="10"  TextWrapping="Wrap"  
FontSize="18"  Width="350"  />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
WebClient
private  void  button2_Click(object  sender,  RoutedEventArgs e)
{
WebClient twitter  =  new  WebClient();
//  Handle  downloaded  data  when  finished
twitter.DownloadStringCompleted +=  new  
DownloadStringCompletedEventHandler(twitter_DownloadStringCompleted);
//  Set  the  site
twitter.DownloadStringAsync(new  
Uri("http://api.twitter.com/1/statuses/user_timeline.xml?screen_name="  +  
textBox1.Text));
}
WebClient
void  twitter_DownloadStringCompleted(object sender,  
DownloadStringCompletedEventArgs e)
{
if  (e.Error !=  null)
return;
XElement xmlTweets =  XElement.Parse(e.Result);
lstTwitter.ItemsSource =  
from tweet  in  xmlTweets.Descendants("status")
select new  TwitterItem
{
ImageSource =  
tweet.Element("user").Element("profile_image_url").Value,
Message  =  tweet.Element("text").Value
};
}
Android L09 - Windows Phone and iOS
Navigation
void  GoToPage2_Click(object  sender,  RoutedEventArgs e)
{
NavigationService.Navigate(new  Uri("/Page2.xaml",  UriKind.Relative));
}
Windows Azure Toolkit
for Windows Phone
http://watwp.codeplex.com
Frameworks
Frameworks
• jQuery Mobile
• PhoneGap
• Sencha Touch
• Xamarin
• AngularJS with iconic
• … etc
How they work?
Android L09 - Windows Phone and iOS
Android L09 - Windows Phone and iOS

More Related Content

PPTX
Technical windows 8 and windows phone 8 apps
PPT
Networking Slides
PPSX
Foreign market entry strategies
PDF
State of the Word 2011
PPTX
Training: MVVM Pattern
PDF
Models used in iOS programming, with a focus on MVVM
PPTX
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
PDF
How I Accidentally Discovered MVVM
Technical windows 8 and windows phone 8 apps
Networking Slides
Foreign market entry strategies
State of the Word 2011
Training: MVVM Pattern
Models used in iOS programming, with a focus on MVVM
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
How I Accidentally Discovered MVVM

Similar to Android L09 - Windows Phone and iOS (20)

PPTX
MVVM presentation
PPTX
Understanding The MVVM Pattern (TechDays Belgium)
PPTX
MVVM ( Model View ViewModel )
PDF
GitHub halp app - Minimizing platform-specific code with MVVM - Justin Spahr-...
PDF
MVVM & RxSwift
PPTX
MVVM with Dependency Injection
PDF
Встреча №9. Будущее паттерна MVVM в iOS приложениях, Денис Лебедев
KEY
What's new in Silverlight 5
PPTX
Adopting MVVM
PDF
iOS architecture patterns
PPTX
MVVM Presentation.pptx
PPTX
My perspective on MVP and architecture discussions
PDF
Application architecture pattern
PDF
MVP Mix 2015 Leveraging MVVM on all Platforms
PDF
MVVM in iOS presentation
PPTX
The Magic of WPF & MVVM
PDF
Model View Presenter
PDF
Ui design patterns
PPTX
WPF For Beginners - Learn in 3 days
PPTX
Meetup - Getting Started with MVVM Light for WPF - 11 may 2019
MVVM presentation
Understanding The MVVM Pattern (TechDays Belgium)
MVVM ( Model View ViewModel )
GitHub halp app - Minimizing platform-specific code with MVVM - Justin Spahr-...
MVVM & RxSwift
MVVM with Dependency Injection
Встреча №9. Будущее паттерна MVVM в iOS приложениях, Денис Лебедев
What's new in Silverlight 5
Adopting MVVM
iOS architecture patterns
MVVM Presentation.pptx
My perspective on MVP and architecture discussions
Application architecture pattern
MVP Mix 2015 Leveraging MVVM on all Platforms
MVVM in iOS presentation
The Magic of WPF & MVVM
Model View Presenter
Ui design patterns
WPF For Beginners - Learn in 3 days
Meetup - Getting Started with MVVM Light for WPF - 11 may 2019
Ad

More from Mohammad Shaker (20)

PDF
12 Rules You Should to Know as a Syrian Graduate
PDF
Ultra Fast, Cross Genre, Procedural Content Generation in Games [Master Thesis]
PDF
Interaction Design L06 - Tricks with Psychology
PDF
Short, Matters, Love - Passioneers Event 2015
PDF
Unity L01 - Game Development
PDF
Android L07 - Touch, Screen and Wearables
PDF
Interaction Design L03 - Color
PDF
Interaction Design L05 - Typography
PDF
Interaction Design L04 - Materialise and Coupling
PDF
Android L05 - Storage
PDF
Android L04 - Notifications and Threading
PDF
Interaction Design L01 - Mobile Constraints
PDF
Interaction Design L02 - Pragnanz and Grids
PDF
Android L10 - Stores and Gaming
PDF
Android L06 - Cloud / Parse
PDF
Android L08 - Google Maps and Utilities
PDF
Android L03 - Styles and Themes
PDF
Android L02 - Activities and Adapters
PDF
Android L01 - Warm Up
PDF
Indie Series 03: Becoming an Indie
12 Rules You Should to Know as a Syrian Graduate
Ultra Fast, Cross Genre, Procedural Content Generation in Games [Master Thesis]
Interaction Design L06 - Tricks with Psychology
Short, Matters, Love - Passioneers Event 2015
Unity L01 - Game Development
Android L07 - Touch, Screen and Wearables
Interaction Design L03 - Color
Interaction Design L05 - Typography
Interaction Design L04 - Materialise and Coupling
Android L05 - Storage
Android L04 - Notifications and Threading
Interaction Design L01 - Mobile Constraints
Interaction Design L02 - Pragnanz and Grids
Android L10 - Stores and Gaming
Android L06 - Cloud / Parse
Android L08 - Google Maps and Utilities
Android L03 - Styles and Themes
Android L02 - Activities and Adapters
Android L01 - Warm Up
Indie Series 03: Becoming an Indie
Ad

Recently uploaded (20)

PPTX
Essential Infomation Tech presentation.pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
System and Network Administration Chapter 2
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
top salesforce developer skills in 2025.pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PPTX
ai tools demonstartion for schools and inter college
PPTX
Materi_Pemrograman_Komputer-Looping.pptx
PPTX
Online Work Permit System for Fast Permit Processing
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Odoo POS Development Services by CandidRoot Solutions
Essential Infomation Tech presentation.pptx
How to Choose the Right IT Partner for Your Business in Malaysia
How to Migrate SBCGlobal Email to Yahoo Easily
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
System and Network Administration Chapter 2
ISO 45001 Occupational Health and Safety Management System
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
top salesforce developer skills in 2025.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Upgrade and Innovation Strategies for SAP ERP Customers
Understanding Forklifts - TECH EHS Solution
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
ai tools demonstartion for schools and inter college
Materi_Pemrograman_Komputer-Looping.pptx
Online Work Permit System for Fast Permit Processing
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
2025 Textile ERP Trends: SAP, Odoo & Oracle
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Which alternative to Crystal Reports is best for small or large businesses.pdf
Odoo POS Development Services by CandidRoot Solutions

Android L09 - Windows Phone and iOS