In my previous tutorial i have explained about how to create uitableview, in this tutorial we will learn about how to implement uistepper using swift in iOS. UIStepper control lets user adjust a value by increasing and decreasing it in small steps. It has two buttons with minus (-) and plus(+) symbol. The minus symbol button is used to decrement … [Continue reading...]
MBProgressHUD example in Swift
In the previous example we have learned how to create UIActivityIndicator Example in swift, this tutorial we will learn about how to create MBProgressHUD Example in swift. What is MBProgressHUD? MBProgressHUD is an custom control that is used to displays a translucent HUD with a progress indicator with some optional labels while work is being done … [Continue reading...]
UIWebView example using swift in ios
In the Previous ios webview example I have explained about creating ios webview using objective-c, but this tutorial we are going to learn about creating and implementing the uiwebview example using swift programming language. UIWebView object is used the load and display the web content into your application, safari browser is the primary example … [Continue reading...]
How to convert array to space separated strings in javascript
To convert array to space separated strings in javascript we can use the join() method of an array, by passing the string with space as a parameter. the Array.join() method returned the strings with spaces as an output. ☞ Check out The Complete JavaScript Course 2023: From Zero to Expert! (Buy now, the offer ends in a few … [Continue reading...]
How to convert array to comma separated strings in javascript
To Convert array to comma separated strings in Javascript first need to pass the array to the String object like String(arr), then the String(arr) will return the comma separated strings as an output. ☞ Check out The Complete JavaScript Course 2023: From Zero to Expert! (Buy now, the offer ends in a few hours) Please refer to the … [Continue reading...]
How to insert a line break into a Text component in React Native?
How to insert a line break into a Text component in React Native? To insert a line break into a text component in react native we can add the {'\n'} character string or add the next line in the string literal. we will see some example code for the above two cases and if you are calling the data via API you can add the string replace function … [Continue reading...]
Best Mobile UI Frameworks using HTML5, CSS and JS
We can divide the mobile application development into native, hybrid, and web. Hybrid and Web developers are only familiar with HTML5, CSS, and JS. After the PhoneGap/Cordova native API access web developers can able develop their own mobile applications with the support of modern mobile web UI frameworks. There are many mobile web UI frameworks … [Continue reading...]
Ionic 2 getting started
Ionic framework has quickly emerged as one of the leading mobile app development framework using HTML5, CSS and JavaScript that UI and it is looks like native user interface components. It targets multiple platforms like Android, iOS and Windows Phone with single code base so web application developers can easily create their own mobile apps with … [Continue reading...]
ionic side menu example
Ionic framework provides excellent side menu directive which is easy to implement and also having the excellent user interface, in this example we will learn about how to create a simple ionic side menu example. This ionic side menu also known as ionic navigation drawer and many of us know it is one of the best and popular navigation pattern for … [Continue reading...]
Cordova InAppBrowser Plugin Example using ionic framework
In the previous tutorial i had written a post about how to use cordova device plugin, this post was about cordova inappbrowser plugin example using ionic framework and ngcordova. the cordova inappbrowser plugin is used to launch the URL into external browser or external applications, this example will work on iOS and Android devices. Next … [Continue reading...]
Cordova device plugin example using ionic framework
In the previous tutorial we have implemented the Cordova camera plugin example, now this tutorial we will learn about how to implement Cordova device plugin example. Next create the ionic project using the below commands. Here we are creating the ionic blank project and name it is as "DevicePluginExample" ionic start DevicePluginExample … [Continue reading...]
Cordova camera plugin example using ionic framework
In the previous tutorial we have learned about the getting started with ionic framework. now we are going to learn about how to access the device camera and photo library using cordova camera plugin and ionic framework. This sample will work android and iOS Devices. Next create ionic framework sample using the below command, here we are creating … [Continue reading...]
Recent Comments