Macの単純なNSScrollViewに奇妙な問題があります。Cocoaでプログラミングを始めたばかりですが、iOSでUIKitを使用した経験があります。NSScrollViewをxibファイルに追加し、スクロールビューをウィンドウにドロップしたときにXcodeによって自動的に生成されたNSViewをサブクラス化しました。サブクラスは、単にコンテンツビューをスクロールビューに追加し、背景を描画します。ここにあります:
#import "TweetsView.h"
@implementation TweetsView
- (id)initWithFrame:(NSRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
}
return self;
}
- (void)awakeFromNib {
[self reload];
}
- (void)reload {
//Retrieve tweets
ACAccount *account = [[TwitterModel retrieveTwitterAccounts] objectAtIndex:1];
TwitterModel *model = [[TwitterModel alloc] init];
NSArray *timeline = [model retrieveMainTimelineWithAccount:account];
//Display the tweets
int stackHeight = 0;
for (NSDictionary *tweetDictionary in timeline) {
TweetView *tweetView = [[TweetView alloc] initWithFrame:NSMakeRect(0, stackHeight, self.frame.size.width, 60)];
[tweetView setMainText:[tweetDictionary objectForKey:@"text"]];
[self addSubview:tweetView];
stackHeight += (int)tweetView.frame.size.height;
}
self.frame = NSMakeRect(self.frame.origin.x, self.frame.origin.y, self.frame.size.width, stackHeight);
}
- (void)drawRect:(NSRect)dirtyRect
{
[[NSColor colorWithCalibratedRed:0.96 green:0.96 blue:0.96 alpha:1.0] setFill];
NSRectFill(dirtyRect);
[super drawRect:dirtyRect];
}
- (void)setTweets:(NSArray *)tweets {
_tweets = tweets;
}
- (NSArray *)tweets {
return _tweets;
}
@end
このプログラムを実行すると、スクロールビューは通常どおり表示されますが、トラックパッドでスクロールできません。スクロールバーも表示されません。ウィンドウのサイズを変更すると、Cocoaアプリケーションで通常表示されるのと同じように、スクロールバーが1秒間表示されます。すばやく移動できる場合は、スクロールバーをドラッグしてスクロールできます。したがって、スクロールビューは存在すると思いますが、マウスとジェスチャに応答しません。
私はここで何が間違っているのですか?MountainLionとXcode4.4を実行していますが、スクロールビューの前にビューがありません。前もって感謝します!