You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 29, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: StateRestoration/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,23 @@
1
1
---
2
2
name: Xamarin.iOS - StateRestoration
3
-
description: Demonstrates how to use UICollectionView, a way to present ordered data to users in a grid-like fashion. With a collection view object, you are...
3
+
description: "Demonstrates how to use UICollectionView, a way to present ordered data to users in a grid-like fashion (UI)"
4
4
page_type: sample
5
5
languages:
6
6
- csharp
7
7
products:
8
8
- xamarin
9
+
extensions:
10
+
tags:
11
+
- ui
9
12
urlFragment: staterestoration
10
13
---
11
14
# StateRestoration
12
15
13
16
Demonstrates how to use `UICollectionView`, a way to present ordered data to users in a grid-like fashion. With a collection view object, you are able to define the presentation and arrangement of embedded views. The collection view class works closely with an accompanying layout object to define the placement of individual data items. In this example `UIKit` provides a standard flow-based layout object that you can use to implement multi-column grids containing items of a standard size.
14
17
15
-
This application also demonstrates the use of `Application State Restoration` features introduced in iOS 7. If the application exits, it will restore the previous state the next time it starts.
This application also demonstrates the use of `Application State Restoration` features introduced in iOS 7. If the application exits, it will restore the previous state the next time it starts.
16
21
17
22
(Note that if you quit the application from the `App Switcher`, it will not restore state on the next launch, so for testing, exit the application from `Xamarin Studio`.)
18
23
@@ -39,14 +44,9 @@ Additionally, if the Mail Activity is selected, to compose Mail, that will be sa
39
44
Building this sample requires Xcode 5.0 and iOS 7.0 SDK
40
45
41
46
## Target
47
+
42
48
This sample runnable on iPhoneSimulator or iPhone
43
49
44
-
## Copyright
50
+
## License
45
51
46
52
Xamarin port changes are released under the MIT license
* Non-Consumable purchases using iOS 6 hosted content [docs](http://docs.xamarin.com/ios/tutorials/Introduction_to_iOS_6/Changes_to_StoreKit)
19
+
* Non-Consumable purchases using iOS 6 hosted content [docs](https://docs.microsoft.com/xamarin/ios/platform/introduction-to-ios6/changes-to-storekit)
20
20
21
-
* ProductView using iOS 6 feature purchase iTunes/App Store/iBookstore content in your app [docs](http://docs.xamarin.com/ios/tutorials/Introduction_to_iOS_6/Changes_to_StoreKit)
21
+
* ProductView using iOS 6 feature purchase iTunes/App Store/iBookstore content in your app [docs](https://docs.microsoft.com/xamarin/ios/platform/introduction-to-ios6/changes-to-storekit)
22
22
23
23
There is also a directory containing the Xcode projects that are used to build Hosted Content for iOS 6 in-app purchases.
FYI the sample code is based in-part on @jtclancey's AppStore code here:
35
+
FYI the sample code is based in-part on @jtclancey's AppStore code here:
39
36
40
37
https://github.com/Clancey/ClanceyLib
41
38
42
39
## Store Product View
40
+
43
41
This sample demonstrates the new iOS 6 SKStoreProductViewController that lets applications display iTunes, App Store and iBookstore products for review or purchase.
There's a bit of set-up required for In-App Purchases (registering your bank details with Apple, setting up the products in the iOS Developer Portal, Provisioning your app correctly). These steps are the same for MonoTouch and Objective-C, so Apple's setup doco might help [1]. You should also read Apple's In-App Purchase programming docs [2], for familiarity.
description: This sample is a demonstration of the final application that will be produced at the end of the Tables and Storyboards guide.
3
+
description: "Demonstration of the final application that will be produced at the end of the Tables and Storyboards doc"
4
4
page_type: sample
5
5
languages:
6
6
- csharp
@@ -10,4 +10,6 @@ urlFragment: storyboardtable
10
10
---
11
11
# Storyboard Tables
12
12
13
-
This sample is a demonstration of the final application that will be produced at the end of the [Tables and Storyboards](docs.xamarin.com/guides/ios/user_interface/tables/part_5_-_using_xcode,_interface_builder,_and_storyboards/) guide.
13
+
This sample is a demonstration of the final application that will be produced at the end of the [Tables and Storyboards](https://docs.microsoft.com/xamarin/ios/user-interface/controls/tables/creating-tables-in-a-storyboard) guide.
14
+
15
+

name: Xamarin.iOS - Storyboard Tables - Local Authentication
3
-
description: This sample is a demonstration of the final application that will be produced at the end of the Introduction to Touch ID guide. FOr iOS 11...
3
+
description: "Demonstration of the final application that will be produced at the end of the Introduction to Touch ID guide (iOS11)"
This sample is a demonstration of the final application that will be produced at the end of the [Introduction to Touch ID](developer.xamarin.com/guides/ios/platform_features/introduction_to_touchid/) guide.
13
+
This sample is a demonstration of the final application that will be produced at the end of the [Introduction to Touch ID](https://docs.microsoft.com/xamarin/ios/platform/touchid) guide.
14
14
15
15
FOr iOS 11 compatibility, see this [Local Authentication using Face ID or Touch ID](https://github.com/xamarin/ios-samples/tree/master/ios11/FaceIDSample). It has updated Info.plist and code to work with Face ID.
description: This sample illustrates how to use AudioToolbox's AudioFileStream to parse an audio stream progressively and play the audio back. The audio is a...
3
+
description: "This sample illustrates how to use AudioToolbox's AudioFileStream to parse an audio stream progressively and play the audio back"
4
4
page_type: sample
5
5
languages:
6
6
- csharp
@@ -12,23 +12,17 @@ urlFragment: streamingaudio
12
12
13
13
This sample illustrates how to use AudioToolbox's AudioFileStream to
14
14
parse an audio stream progressively and play the audio back.
15
-
15
+
16
16
The audio is a creative commons MP3 file that is downloaded from a
17
17
website using Mono's HTTP stack.
18
-
18
+
19
19
There are two samples:
20
20
21
-
* One plays as it streams, and does not attempt to buffer more than
21
+
- One plays as it streams, and does not attempt to buffer more than
22
22
the audio buffers that are used for AudioToolbox.
23
-
24
-
* The second sample shows how to save a copy of the data as it is being
23
+
24
+
- The second sample shows how to save a copy of the data as it is being
25
25
downloaded (for example, a podcasting application would stream audio
Copy file name to clipboardExpand all lines: SystemSound/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: Xamarin.iOS - System Sound
3
-
description: 'This sample demonstrates playing sound via AudioToolkit. Note: not all devices support vibration. Build Requirements Building this sample requires...'
3
+
description: 'This sample demonstrates playing sound via AudioToolkit. Note: not all devices support vibration'
Copy file name to clipboardExpand all lines: TabbedImages/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: Xamarin.iOS - Tabbed Images
3
-
description: This is a sample demonstrating basic usage of images. It demonstrates how to load images lazily using UIImage.FromBundle and asynchronously using...
3
+
description: "This is a sample demonstrating basic usage of images. It demonstrates how to load images lazily using UIImage.FromBundle"
4
4
page_type: sample
5
5
languages:
6
6
- csharp
@@ -13,3 +13,5 @@ urlFragment: tabbedimages
13
13
This is a sample demonstrating basic usage of images. It demonstrates how
14
14
to load images lazily using UIImage.FromBundle and asynchronously using
15
15
UIImage.FromFile.
16
+
17
+

0 commit comments