资源简介
音乐播放器,支持歌词同步显示, 用于掌握tableView
代码片段和文件信息
//
// SongListViewController.m
// MusicPlayer
//
// Created by He lingzhi on 11/17/14.
// Copyright (c) 2014 com.duct.lecture8. All rights reserved.
//
#import “SongListViewController.h“
@interface SongListViewController ()
@end
@implementation SongListViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark 表视图
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.songArray count]; //获取歌曲数目
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@“SongCell“];
//该表格选中后没有颜色
// cell.selectionstyle = UITableViewCellSelectionstyleNone;
// cell 的背景色 设为透明色
//cell.backgroundColor = [UIColor clearColor];
cell.textLabel.text = [ self.songArray[indexPath.row] name];
return cell;
}
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// UITableViewCell * cell =[tableView cellForRowAtIndexPath:indexPath];
// 获取到当前被选中的行
[self.delegate SongSelected:indexPath.row];
[self dismissViewControllerAnimated:YES completion:nil] ;
}
@end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-11-17 11:07 01_MusicPla
文件 12292 2014-11-17 11:37 01_MusicPla
目录 0 2014-11-19 10:27 __MACOSX\
目录 0 2014-11-19 10:27 __MACOSX\01_MusicPla
文件 120 2014-11-17 11:37 __MACOSX\01_MusicPla
目录 0 2014-11-17 11:40 01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
文件 15 2014-11-16 12:49 01_MusicPla
文件 137 2014-11-16 12:49 01_MusicPla
文件 73 2014-11-16 12:49 01_MusicPla
文件 23 2014-11-16 12:49 01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
文件 452 2014-11-16 12:49 01_MusicPla
文件 896 2014-11-16 12:49 01_MusicPla
文件 189 2014-11-16 12:49 01_MusicPla
文件 398 2014-11-16 12:49 01_MusicPla
文件 1642 2014-11-16 12:49 01_MusicPla
文件 1352 2014-11-16 12:49 01_MusicPla
文件 4951 2014-11-16 12:49 01_MusicPla
文件 1239 2014-11-16 12:49 01_MusicPla
文件 3611 2014-11-16 12:49 01_MusicPla
文件 4592 2014-11-17 11:35 01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
文件 40 2014-11-16 12:49 01_MusicPla
目录 0 2014-11-19 10:27 __MACOSX\01_MusicPla
目录 0 2014-11-19 10:27 __MACOSX\01_MusicPla
文件 171 2014-11-16 12:49 __MACOSX\01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
文件 167 2014-11-16 12:49 01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
目录 0 2014-11-16 12:49 01_MusicPla
............此处省略247个文件信息
相关资源
- Push Notifications by Tutorials (Swift 4.2)
- IOS-音乐播放器
- c2800nm-adventerprisek9-mz.124-25.bin
- RxSwift - Reactive Programming with Swift (R
- Data Structures and Algorithms v2.0 (iOS12 &
- raywenderlich 的 Data Structures and Algorith
- iOS和macOS性能优化:Cocoa、Cocoa Touch、
- iOS 2D 游戏开发教程 2D_Apple_Games_by_Tu
- LCD1602显示 基于nios ii
- Advanced iOS App Architecture (Swift 5)
- FPGA基于NIOS II的电子钟设计
-
TextureView+MediaPla
yer播放本地视频MV - Sams Teach Yourself iOS9® Application Develop
- 好用的编程字体,中英合成
-
opencv2.fr
amework - Pattern Recognition 4th Edition模式识别英文
- iOS demo SM2,SM4 加密算法,SM2+SM3签名
- CISCO ASA5500-X 最新IOS:asa917
- 基于NIOS内核的FPGA电路系统设计.pdf
- 高性能iOS应用开发(中文版电子书p
- iOS Test Driven Development by Tutorials (Sw
- Cisco 3750最新IOS
- HP Z820 WS 加入nvme bios
- ray wenderlich 的Design Patterns by Tutorials
- 苹果手机60-8.12隐藏ID锁方法和4S\\5S\
- Cisco AP 1700i 系列 瘦 IOS
- Y450 最新bios 17CN44WW及工具
- Nagios 搭建+配置包含Nagios英文版、中文
- Biostatistical_Analysis_5thJ._H._Zar.pdf
- iOS6实战指南(中文版)PDF
评论
共有 条评论