Swift基础--调用第三方OC项目

前端之家收集整理的这篇文章主要介绍了Swift基础--调用第三方OC项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_301_1@第一步:创建和配置Bridging-Header.h

Swift与OC进行混编,首先要有一个.h文件,这里使用Bridging-Header.h然后设置项目的Build Settings--Swift Compiler--Objective-C Bridging Header内容为DemoApp/Bridging-Header.h,这个与Bridging-Header.h位置有关,从项目的根目录开始在Objective-C Bridging Header选项里面写入Bridging-Header.h相对路径。


@H_301_1@第二步:第三方项目依赖

对于第三方项目的依赖,一开始我打算用CocoaPods,但是过程曲折,最后一直报

[objc] view plain copy
  1. <spanstyle="font-size:14px;">ld:218duplicatesymbolsforarchitecturei386
  2. clang:error:linkercommandFailedwithexitcode1(use-vtoseeinvocation)</span>
我也没有办法了就把第三方项目源码拷贝到自己的项目里面,上图也可以看到我拷贝的事AFNetworking项目,然后在把源码加入到Build Phases--Compile Sources里面

@H_301_1@第三步:修改Bridging-Header.h

在Bridging-Header.h中写入#import"AFNetworking.h"

@H_301_1@第四步:调用OC

前面的工作做完后我们就可以调用第三方项目的功能

copy
//
  • //ViewController.swift
  • //DemoApp
  • //
  • //Createdbyjiezhangon14/10/24.
  • //Copyright(c)2014年jiezhang.Allrightsreserved.
  • importUIKit
  • classViewController:UIViewController{
  • @IBOutletweakvarweatherInfo:UITextView!
  • overridefuncviewDidLoad(){
  • super.viewDidLoad()
  • updateWeatherInfo()
  • }
  • overridefuncdidReceiveMemoryWarning(){
  • super.didReceiveMemoryWarning()
  • //DispoSEOfanyresourcesthatcanberecreated.
  • }
  • funcupdateWeatherInfo(){
  • letmanager=AFHTTPRequestOperationManager()
  • leturl="http://api.openweathermap.org/data/2.5/weather"
  • println(url)
  • letparams:NSDictionary=["lat":"37.785834","lon":"-122.406417","cnt":0]
  • println(params)
  • manager.GET(url,
  • parameters:params,
  • success:{(operation:AFHTTPRequestOperation!,0); background-color:inherit">responSEObject:AnyObject!)in
  • self.weatherInfo.text="JSON:"+responSEObject.description!
  • },
  • failure:{(operation:AFHTTPRequestOperation!,0); background-color:inherit">error:NSError!)in
  • self.weatherInfo.text="Error:"+error.localizedDescription
  • })
  • <p>}</p>
  • @H_301_1@第五步:运行界面

    @H_309_403@ @H_73_404@
    原文链接:https://www.f2er.com/swift/323062.html

    猜你在找的Swift相关文章