我正在制作一个应用程序,用户可以读取详细信息或文本,用户也可以根据需要更改字体大小?
我尝试使用以下代码,但它无法正常工作
-(IBAction)textSizeAction:(id)sender
{
[self setText:[self text] withSize:[sender floatValue]];
}
所以请给我一些教程?
答案 0 :(得分:1)
您尝试使用setFont方法...
[urTextView setFont:[UIFont fontWithName:@"urFont/Helvetica" size:[sender floatValue]]];
//添加您的字体类型