-
Recent Posts
- Using an Objective C framework, which is inside a Swift framework, in a Xamarin iOS project
- Swipeable table view cell with custom editable views in iOS
- How to create a Swift framework that is compatible with Xamarin iOS
- How to add LightInject to your Xamarin project
- Navigate between views in Xamarin iOS using MVVM Light
Archives
- June 2019
- May 2019
- March 2019
- February 2019
- November 2018
- August 2018
- June 2018
- June 2015
- May 2015
- March 2015
- January 2015
- November 2014
- October 2014
- September 2014
- August 2014
- November 2013
- September 2013
- March 2012
- January 2012
- December 2011
- November 2011
- September 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- January 2011
- December 2010
Categories
Meta
Author Archives: AnujAroshA
Using an Objective C framework, which is inside a Swift framework, in a Xamarin iOS project
Hello iPhone application developers 🙂 The blog post I’m going to write today is more over sharing my personal experience rather than teaching you a lesson. If we take whole scenario, I believe this is a very rare case that … Continue reading
Swipeable table view cell with custom editable views in iOS
Hello guys, I decided to write a short post related to one of the UI issues, some of my colleges faced during implementing UITableView cell actions with custom UIViews. For my convenience, I wrote the sample project in Swift 5. … Continue reading
How to create a Swift framework that is compatible with Xamarin iOS
Hi amigos… 🙂 Welcome back with a new blog post. With this post, what I’m trying to achieve is, reducing the gap between native application development and hybrid application development. Xamarin, is doing a pretty good job by creating an … Continue reading
How to add LightInject to your Xamarin project
Hello everyone, I thought of writing a short and sweet, quick post of using LightInject NuGet in your Xamarin project for Dependency Injection mechanism. In this post, I will cover how LightInject include to your project and what are the … Continue reading
Navigate between views in Xamarin iOS using MVVM Light
Hi again, let’s move on to the second post under Xamarin category. We will use the project that we have configured in our earlier post as our basement, where we have integrated MVVM Light NuGet packages. What we are going … Continue reading
MVVM Light with Xamarin app development
“The education of a man is never completed until he dies.” said by Robert Edward Lee which is very true for IT industry. After seven years of native mobile application development, I had to work on Xmarin, a hybrid application development using C#. Like MVC (Model – View – Controller) is famous in native iOS development, MVVM (Model – View – ViewModel) is common in .NET platform. They even have package manager call NuGet for this MVVM patterns. They have two patterns MVVM Light and MVVM Cross. For this post we are using MVVM Light. Continue reading
UI Testing in Xcode with Swift – part II
In this post also I’ll provide you some helpful tips that I’ve learnt while doing UI testing in Xcode with Swift language. Continue reading
Xcode UI Testing with Swift
Today I’m going to tell you about how to write UI test cases with Swift programing language for iOS applications. Continue reading
Swift & Kotlin (ISBN 978-955-35622-0-3)
Hello friends, it has been a long time since I wrote the last post. The main reason was, WordPress it self suggest me to write a book and I decided if I write another blog post, that is after I … Continue reading
iOS AutoLayout with UIScrollView
Hello friends… 🙂 Up to now you have learnt how to deal with UIImageView, UITexiField and UIButton in an AutoLayout environment. Today we will add UIScrollView to that knowledge bank.Â