- //
- // Song.h
- // 基础测试题
- //
- // Created by apple on 16/7/9.
- // Copyright © 2016年 itcast. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface Song : NSObject
- //歌名
- @property(nonatomic, copy)NSString *songName;
- //艺术家
- @property(nonatomic, copy)NSString *artist;
- //专辑
- @property(nonatomic, copy)NSString *album;
- //歌曲长度(单位:秒)
- @property(nonatomic, assign)int songtime;
- @end
- //
- // Song.m
- // 基础测试题
- //
- // Created by apple on 16/7/9.
- // Copyright © 2016年 itcast. All rights reserved.
- //
- #import "Song.h"
- @implementation Song
- @end
复制代码 |