
Search In
Hi All,
In my latest project I needed to implement multiple Highcharts on a single webpage and to accomplish that I used the following approach.
The main objective of this blog is to cover three things:-
Multiple Highcharts on a single webpage.
bRegister.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
final String password = etPassword.getText().toString();
final String email = etEmail.getText().toString();
mAuth.cre
JAVA
1) Java is completely an object oriented language.
2) Java does not have template classes.
3) Java supports multiple inheritance by the use of interface.
4) Java does not support concept of pointers.
5) java does not have header files
C++
1)
In iOS7 separator of table view do not touch ends of the table/cell ,i.e, the separator don't cover complete length of the table/cell. For this we need to set the separatorInset property of table view. For example if we have a UITableView object name
Apple has deprecated UIAlertView in iOS 8 and above. Now they have introduce UIAlertController, below are the examples.
AlertView without buttons:-
UIAlertController * alert= [UIAlertController
alertControllerWithT
Step1: Import the MessageUI using :- import MessageUI
Step 2: class ViewController: UIViewController, MFMessageComposeViewControllerDelegate
Step 3: when you tap on the button the list of contact will appear and you can choose the contact from the
Only disabling Google Updates from "chrome://plugins" does not matter, It will update it automatically.
I have find a solution for this and providing you the link :
http://www.wikihow.com/Completely-Disable-Google-Chrome-Update
Hope this will help yo
We can share post in Facebook by using following steps:
Add one button on ViewController and give action to it.
Import #import <Social/Social.h>
Now in button action write following code.
- (IBAction)facebookButtonAction:(id)sender {
Hi Readers,
If you are using Alamofire framework to implement API service classes and you need to cancel all the request which are fetching data from server. You can use following Swift code snippet:
if #available(iOS 9.0, *) {
Alamofi
The basic idea behind using callback is that if we are doing a task and it is taking a longer time to complete. So instead of waiting for this task to be complete we want our node server to process other incomming request.In such situations we can us