博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在xcode中用 swift 进行网络服务请求
阅读量:6479 次
发布时间:2019-06-23

本文共 3258 字,大约阅读时间需要 10 分钟。

  xcode集成开发环境是运行于Mac苹果电脑上用于开发swift应用程序的工具,利用xcode可以很方便、直观的开发OS X和iOS系统所支持的应用程序。

1 开发环境:

   Mac OS 10.11

   Xcode 7.3.1

2 用Xcode创建一个swift项目

这里选择Single View application,后续可以用[editor]菜单进行调整。

3 添加导航栏

在main.storyboard中选中默认的viewcontroller,然后单击菜单[Editor]->[Embed in]->[Navigation Controller],如下图所示:

操作成功后,设计器中就会出现2个有关联的view,如下所示:

这时候,我们就可以拖动相关控件到View Controller上。

拖放好控件后,可以用xcode将UI上的控件拖放到后台源码中进行前后台关联,如下图:

如果遇到无法进行关联,可能是由于UI和后台文件没有正确的关联,或者当前两个文件不匹配。

4 导入第三方库

   先下载Alamofire源码包,然后将Alamofire整个文件拖放到上面创建的项目根目录中,然后将Alamofire.xcodeproj拖放到主项目下

关联后,可以用command+B j进行编译,看有无错误。

这里用同样的方法导入swiftjson等库

5 代码逻辑编写

////  MyWebViewController.swift//  swiftapp////  Created by Jackwang on 16/8/12.//  Copyright © 2016年 Jackwang . All rights reserved.//import UIKitimport Alamofireimport SwiftyJSONimport ObjectMapperimport SCLAlertView;class MyWebViewController: UIViewController {    @IBOutlet weak var btnReLoad: UIBarButtonItem!    @IBOutlet weak var btnBack: UIBarButtonItem!    @IBOutlet weak var btnHome: UIBarButtonItem!    override func viewDidLoad() {        super.viewDidLoad()        // Do any additional setup after loading the view, typically from a nib.                btnHome.title = "首页";                //https://github.com/Alamofire/Alamofire                Alamofire.request(.GET, "http://192.168.180.159:9888/MicroServiceAPI.ashx", parameters: ["uname": "admin","upwd":"EAS","api":"api.getUsers"])            .validate()            .responseJSON { response in                switch response.result {                case .Success:                    print("Validation Successful")                    if let strJSON = response.result.value {                        print("JSON: \(strJSON)")                                                //https://github.com/SwiftyJSON/SwiftyJSON                        let json = JSON(strJSON)                        print(json["Code"])                        print(json["IsSuccess"])                        print(json["Message"])                        print(json["DTData"][0]["Name"]) //null                                                                        if json["IsSuccess"].int !=  nil {                            print("Login Sucess")                            // Get started                            SCLAlertView().showInfo("Login Sucess", subTitle: "welcome to app")                        }                        if json["DTData"].string !=  nil {                             SCLAlertView().showInfo("Login data", subTitle: "welcome to app")                        }                        //SCLAlertView().showInfo("ok", subTitle: "welcome to app")                                            }                                    case .Failure(let error):                    print(error)                }        }                                    }    override func didReceiveMemoryWarning() {        super.didReceiveMemoryWarning()        // Dispose of any resources that can be recreated.    }    @IBAction func btnHomeTapped(sender: UIBarButtonItem) {                print("GoHome")    }    @IBAction func btnReloadTapped(sender: UIBarButtonItem) {         print("ReLoad")    }}

6 编译运行

首次运行,如果没有配置info.plist,会报错误.这里需要打开info.plist文件,单击[+],然后添加

App Transport Security Settings

在其子项目下设置Allow Arbitrary Loads为YES.

 

  

转载地址:http://jkwuo.baihongyu.com/

你可能感兴趣的文章
windows server 2003各版本及2008各版本的最大识别内存大小
查看>>
OSChina 周六乱弹 ——揭秘后羿怎么死的
查看>>
IT人员的职业生涯规划
查看>>
sorry,you must have a tty to run sudo
查看>>
ios开发中使用正则表达式识别处理字符串中的URL
查看>>
项目中的积累,及常见小问题
查看>>
Python类型转换、数值操作(收藏)
查看>>
oracle11g dataguard 安装手册(转)
查看>>
java并发包分析之———Deque和LinkedBlockingDeque
查看>>
1. Two Sum - Easy - Leetcode解题报告
查看>>
多线程---同步函数的锁是this(转载)
查看>>
鱼C记事本V1.0(下)- 零基础入门学习Delphi28
查看>>
百练 2742 统计字符数 解题报告
查看>>
Ubuntu搜狗输入法候选词乱码
查看>>
js中回调函数写法
查看>>
React native android 最常见的10个问题
查看>>
数据结构和算法
查看>>
.Net 项目代码风格要求
查看>>
[pat]1045 Favorite Color Stripe
查看>>
Immutable学习及 React 中的实践
查看>>