Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit d98aff6

Browse files
committed
onboard missing samples
1 parent 1b21e84 commit d98aff6

File tree

14 files changed

+53
-78
lines changed

14 files changed

+53
-78
lines changed

SharedResources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ urlFragment: sharedresources
1212

1313
This sample illustrates how to work with various iOS resources including: the accelerometer, photo/video library, camera, battery status, contacts, file system, and network activity indicator.
1414

15-
![Shared Resources application screenshot](Screenshots/01.png "Shared Resources application screenshot")
15+
![Shared Resources application screenshot](Screenshots/01.png)

SimpleBackgroundFetch/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: Xamarin.iOS - SimpleBackgroundFetch
3-
description: This sample demostrates how to handle background fetches when the app is not running.
2+
name: Xamarin.iOS - Background Fetch
3+
description: This sample demonstrates how to handle background fetches when the app is not running.
44
page_type: sample
55
languages:
66
- csharp
@@ -9,7 +9,5 @@ products:
99
urlFragment: simplebackgroundfetch
1010
---
1111
# SimpleBackgroundFetch
12-
This sample demostrates how to handle background fetches when the app is not running.
1312

14-
## Authors
15-
Timothy Risi
13+
This sample demostrates how to handle background fetches when the app is not running.

SimpleBackgroundTransfer/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: Xamarin.iOS - SimpleBackgroundTransfer
3-
description: SimpleBackgroundTransfer is a simple app that illustrates how to use background transfers. Right now this sample only works on iOS devices (not the...
2+
name: Xamarin.iOS - Background Transfer
3+
description: "SimpleBackgroundTransfer is a simple app that illustrates how to use background transfers"
44
page_type: sample
55
languages:
66
- csharp
@@ -14,7 +14,7 @@ SimpleBackgroundTransfer is a simple app that illustrates how to use background
1414

1515
Right now this sample only works on iOS devices (not the simulator).
1616

17+
![App showing a world map image](Screenshots/IMG_0002.PNG)
18+
1719
This is a port of Apple's WWDC2013 sample SimpleBackgroundTransfer.
1820
Link to Apple’s sample:https://developer.apple.com/downloads/index.action?name=WWDC%202013#
19-
20-

SimpleCollectionView/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - Simple Collection Views
3-
description: This sample demonstrates using Collection Views in iOS 6. It accompanies the article Introduction to Collection Views.
3+
description: "Demonstrates using Collection Views. It accompanies the article Introduction to Collection Views."
44
page_type: sample
55
languages:
66
- csharp
@@ -10,4 +10,6 @@ urlFragment: simplecollectionview
1010
---
1111
# Simple Collection Views
1212

13-
This sample demonstrates using Collection Views in iOS 6. It accompanies the article Introduction to Collection Views.
13+
This sample demonstrates using Collection Views. It accompanies the article [Introduction to Collection Views](https://docs.microsoft.com/xamarin/ios/user-interface/controls/uicollectionview).
14+
15+
![App showing a layout of monkey icons](Screenshots/CollectionView.png)

SimpleDrillDown/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - Simple Drill-Down
3-
description: This sample shows how you can make a table with cells that allow the user to drill further down to a detailed view of the data.
3+
description: "Shows how you can make a UITableView list view with cells that allow the user to drill further down to a detailed view of the data"
44
page_type: sample
55
languages:
66
- csharp
@@ -13,3 +13,5 @@ urlFragment: simpledrilldown
1313
This sample shows how you can make a table with cells that
1414
allow the user to drill further down to a detailed view of
1515
the data.
16+
17+
![App showing a menu of Shakespeare play names](Screenshots/SimpleDrillDown1.png)

SimpleLogin/README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - SimpleLogin
3-
description: This sample is the application that will be built at the end of the Creating iOS Applications in Code Using Visual Studio guide.
3+
description: This sample is the application that will be built at the end of the Creating iOS Applications in Code Using Visual Studio doc.
44
page_type: sample
55
languages:
66
- csharp
@@ -10,8 +10,4 @@ urlFragment: simplelogin
1010
---
1111
# SimpleLogin
1212

13-
This sample is the application that will be built at the end of the [Creating iOS Applications in Code Using Visual Studio](http://developer.xamarin.com/guides/ios/application_fundamentals/ios_code_only/) guide.
14-
15-
16-
17-
13+
This sample is the application that will be built at the end of the [Creating iOS Applications in Code Using Visual Studio](https://docs.microsoft.com/xamarin/ios/app-fundamentals/ios-code-only) doc.

SimpleTextInput/README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - Simple Text Input Demo
3-
description: An example showing how to implement a simple text-editing application using Core Text that adopts various iOS 5 Objective-C protocols in a single...
3+
description: "How to implement a simple text-editing application using Core Text that adopts various Objective-C protocols in a single..."
44
page_type: sample
55
languages:
66
- csharp
@@ -10,19 +10,13 @@ urlFragment: simpletextinput
1010
---
1111
# Simple Text Input Demo
1212

13-
An example showing how to implement a simple text-editing application using Core Text that adopts
14-
various iOS 5 Objective-C protocols in a single class.
13+
An example showing how to implement a simple text-editing application using Core Text that adopts various iOS 5 Objective-C protocols in a single class.
1514

16-
It shows how to use the UITextInput and UIKeyInput protocols to connect to the Core Text API.
15+
It shows how to use the `UITextInput` and `UIKeyInput` protocols to connect to the Core Text API.
1716

18-
The file EditableCoreTextView.cs contains a sample showing how to adopt multiple protocols in
19-
C# using the [Adopts] attribute.
17+
The file EditableCoreTextView.cs contains a sample showing how to adopt multiple protocols in C# using the `[Adopts]` attribute.
2018

2119
Based on the Apple sample:
2220
http://developer.apple.com/library/ios/#samplecode/SimpleTextInput/Introduction/Intro.html
2321

2422
![Simple Text Input Demo application screenshot](Screenshots/SimpleTextInput.png "Simple Text Input Demo application screenshot")
25-
26-
## Authors
27-
28-
Rolf Bjarne Kvinge

SoZoomy/README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - SoZoomy
3-
description: 'SoZoomy shows how to use the AVCaptureDevice APIs to zoom with the camera. There are three modes: Face Detection: Displays faces detected on the...'
3+
description: 'Shows how to use the AVCaptureDevice APIs to zoom with the camera. There are three modes: Face Detection, Manual, Meme mode'
44
page_type: sample
55
languages:
66
- csharp
@@ -9,15 +9,11 @@ products:
99
urlFragment: sozoomy
1010
---
1111
# SoZoomy
12-
SoZoomy shows how to use the AVCaptureDevice APIs to zoom with the camera. There are three modes:
1312

14-
* Face Detection: Displays faces detected on the screen; tapping them locks the size and will automatically adjust the zoom as the distance changes.
15-
* Manually setting zoom: Moving the slider at the bottom of the screen adjusts the zoom accordingly
16-
* Meme mode: Triggers an automatically zoom that ramps up quickly.
13+
SoZoomy shows how to use the AVCaptureDevice APIs to zoom with the camera. There are three modes:
1714

18-
**NOTE: This sample will only work with Xcode 5.0 or above.
15+
- Face Detection: Displays faces detected on the screen; tapping them locks the size and will automatically adjust the zoom as the distance changes.
16+
- Manually setting zoom: Moving the slider at the bottom of the screen adjusts the zoom accordingly
17+
- Meme mode: Triggers an automatically zoom that ramps up quickly.
1918

2019
![SoZoomy application screenshot](Screenshots/01.png "SoZoomy application screenshot")
21-
22-
## Authors
23-
Timothy Risi

SocialFrameworkDemo/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - Social Framework Demo
3-
description: This sample demonstrates using the Apple's Social Framework to access Twitter and Facebook. It accompanies the article Introduction to the Social...
3+
description: This sample demonstrates using the Apple's Social Framework to access Twitter and Facebook
44
page_type: sample
55
languages:
66
- csharp
@@ -10,4 +10,6 @@ urlFragment: socialframeworkdemo
1010
---
1111
# Social Framework Demo
1212

13-
This sample demonstrates using the Apple's Social Framework to access Twitter and Facebook. It accompanies the article Introduction to the Social Framework.
13+
This sample demonstrates using the Apple's Social Framework to access Twitter and Facebook. It accompanies the article [Introduction to the Social Framework](https://docs.microsoft.com/xamarin/ios/platform/social-framework).
14+
15+
![App with Facebook login page](Screenshots/Facebook02.png)

Sound/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Xamarin.iOS - Sound
3-
description: Sound is a simple example of how to record an AAC file using the iPhone microphone or externally attached recording hardware and then play it back.
3+
description: Sound is an example of how to record an AAC file using the iPhone microphone or externally attached recording hardware then play it back.
44
page_type: sample
55
languages:
66
- csharp
@@ -14,7 +14,3 @@ Sound is a simple example of how to record an AAC file using the iPhone
1414
microphone or externally attached recording hardware and then play it back.
1515

1616
![Sound application screenshot](Screenshots/screenshot-1.png "Sound application screenshot")
17-
18-
## Authors
19-
20-
James Bentley, Bryan Costanich

0 commit comments

Comments
 (0)