Ale*_*pov -2 cocoa-touch objective-c uiscrollview uilabel ios4
标签位于屏幕中央(或下方),iphone 4.3不显示.但iphone与iOS 5.0显示.全部由IB制造.
UPD :(代码)
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
self.view.backgroundColor = [UIColor blackColor];
[scroll setContentSize:CGSizeMake(320, 700)];
scroll.frame = CGRectMake(0, 0, 320, 460);
}
return self;
}
Run Code Online (Sandbox Code Playgroud)
您可以像设置代码一样正常设置自定义字体.
UIFont *yourFont = [UIFont fontWithName:@"Helvetica Neue Medium" size:17.0];
Run Code Online (Sandbox Code Playgroud)
您可能需要为字体名称中的空格添加" - ",以便它对于字体名称看起来像这样.
@"Helvetica-Neue-Medium"
@"HelveticaNeue-Medium"
Run Code Online (Sandbox Code Playgroud)