最近楼主在swift的自学中痛并快乐着,这个最简单的天气预报功能遇到了好多小坑, 吐血记录下代码.
// ViewController.swift
// Weather
//
// Created by angela on 14/11/4.
// Copyright (c) 2014年 angela. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet var tv:UITextView?
@IBAction func btnPressed(sender:Anyobject){
println("button clicked")
loadWeather()
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view typically from a nib.
loadWeather()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func loadWeather(){
var url = N