這是我的.m我試圖讓一個UILabel到一個UIScrollView內滾動,但它不滾動
- (void)viewDidLoad
{
[super viewDidLoad];
[self.scrollView addSubview:self.contentView];
self.scrollView.contentSize = self.contentView.bounds.size;
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
NSMutableArray *arr = [[NSMutableArray alloc]init];
arr = [Singleton getArray];
NSString *str = [arr componentsJoinedByString:@"\n"];
summaryLabel.text = str;
}
這是我的.h
@interface TotalViewController : UIViewController
{
UIScrollView *scrollView;
UIView *contentView;
}
@property (nonatomic, retain) IBOutlet UIScrollView * scrollView;
@property (nonatomic, retain) IBOutlet UIView * contentView;
@property (nonatomic,strong) IBOutlet UILabel * summaryLabel;
我的標籤是連接到View Controller,我的contentView連接到View Controller,我的summaryLabel連接到View Controller。我需要標籤滾動,而不是。
哇我不能相信這是多麼容易。謝謝。 –
您正在考慮使用UITextView的人們必須意識到這絕對是錯誤。如果你想滾動,以及設置字體大小/家庭,UITextView可能讓你熬夜。 (特別是如果您以編程方式設置文本,而不是故事板)。 另請參閱http://stackoverflow.com/a/19168661/4493512 –