iTunes API 的 Swift 实现 iTunesSwift
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/tsuchikazu/iTunesSwift
- 官方下载: https://github.com/tsuchikazu/iTunesSwift
软件介绍
iTunesSwift 是 Swift 实现的 iTunes API。
搜索:
import ITunesSwift
// Search All
ITunesSwift.findAll().by("search keyword").request { (result , error) in
println(result)
}
// Search albums (Specifiable all media and entity. Media.Music, Entity.MusicArtist, Entity.Software etc...)
ITunesSwift.find(Entity.Album).by("search keyword").request { (result , error) in
println(result)
}
// With Attributes
ITunesSwift.find(Entity.Album).by(Attribute.ArtistTerm, term: "artist name").request() { (result , error) in
println(result)
}
// With limit
ITunesSwift.find(Entity.Album).by("search keyword").limit(10).request { (result , error) in
println(result)
}
Mobilizing Web Sites
Layon, Kristofer / 2011-12 / 266.00元
Everyone has been talking about the mobile web in recent years, and more of us are browsing the web on smartphones and similar devices than ever before. But most of what we are viewing has not yet bee......一起来看看 《Mobilizing Web Sites》 这本书的介绍吧!
