0
我有一個應用程序,我已經設置了一個通知。當通知提高時,則根據設備的音量級別發出聲音。所以我想在視圖中添加一個進度條或滑塊來控制設備的音量。例如,你有一個視圖,其中你有滑塊/進度條。當你滑動它們時,音量增加或減少。 如何通過這些工具控制設備的音量?如何通過我們的應用程序通過進度或滑動條來控制設備的音量?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
static NSString * CellIdentifier = @「Cell」;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
if(indexPath.row==0)
{
cell.textLabel.text = @"Vibration";
UISwitch *switch_vib=[[UISwitch alloc] initWithFrame:CGRectMake(210, 9, 94, 27)];
switch_vib.on=YES;
[cell addSubview:switch_vib];
}
else //if(indexPath.row==1)
cell.textLabel.text = @"Set volumes";
return cell;
}
在此先感謝...