From 103f8ae3e1dc2e957263dc33f355641fa146ed3a Mon Sep 17 00:00:00 2001 From: Andreas Bjerkeholt Date: Wed, 7 Nov 2018 17:50:11 +0100 Subject: [PATCH] Fix README formatting (title and images) --- .../ios/standard_controls/alertcontroller/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Recipes/ios/standard_controls/alertcontroller/README.md b/Recipes/ios/standard_controls/alertcontroller/README.md index cbc4603..7c5c8cf 100644 --- a/Recipes/ios/standard_controls/alertcontroller/README.md +++ b/Recipes/ios/standard_controls/alertcontroller/README.md @@ -28,7 +28,7 @@ There are three steps to take when creating an AlertController: # Alert with One Button -![Images\okayalert.png](Images\okayalert.png) +![Images/okayalert.png](Images/okayalert.png) ``` @@ -48,7 +48,7 @@ okayButton.TouchUpInside += (sender, e) => { # Alert with Two buttons -![Images\okaycancel.png](Images\okaycancel.png) +![Images/okaycancel.png](Images/okaycancel.png) ``` okayCancelButton.TouchUpInside += ((sender, e) => { @@ -67,7 +67,7 @@ okayCancelButton.TouchUpInside += ((sender, e) => { # Alert with Text Field -![Images\textinput.png](Images\textinput.png) +![Images/textinput.png](Images/textinput.png) ``` @@ -92,9 +92,9 @@ textInputButton.TouchUpInside += ((sender, e) => { }); ``` -#ActionSheet Alert +# ActionSheet Alert -![Images\actionsheet.png](Images\actionsheet.png) +![Images/actionsheet.png](Images/actionsheet.png) ```