//
// ViewController.h
// myAppMobileService
//
// Created by Weerachai on 5/12/56 BE.
// Copyright (c) 2556 Weerachai. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <WindowsAzureMobileServices/WindowsAzureMobileServices.h>
@interface ViewController : UIViewController
{
IBOutlet UILabel *lblStatus;
}
@property (nonatomic, strong) MSClient *cl;
@end
และไฟล์ ViewController.m เขียนคำสั่งเพื่อติดต่อกับ Mobile Services ของ Windows Azure
//
// ViewController.m
// myAppMobileService
//
// Created by Weerachai on 5/12/56 BE.
// Copyright (c) 2556 Weerachai. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
MSClient *client = [MSClient clientWithApplicationURLString:@"https://thaicreate.azure-mobile.net/"
applicationKey:@"JbRsrGvytUSWWmfKkoqukDmLYzERpl40"];
self.cl =[client clientWithFilter:self];
if (self.cl != [NSNull null]) {
lblStatus.text = @"iOS Mobile Service Connected";
}
else
{
lblStatus.text = @"iOS Mobile Service Connect Failed";
}
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)dealloc {
[lblStatus release];
[super dealloc];
}
@end
ทดสอบการทำงานจะได้ผลพังรูป ตอนนี้ iOS สามารถติดต่อกับ Mobile Services ของ Windows Azure เรียบร้อยแล้ว และบทความถัดไป เราจะมารู้วิธีการ Insert ข้อมูลไปจัดเก็บไว้ที่ Mobile Services ของ Windows Azure