可拖動的UIView我米的iOS初學者和我已經建立以下層次結構,用的UITextView
1. uiview
2. uiview
3. uitextview
UITextView的和的UIView的大小(2)是相同的。
現在的問題是,我想拖uitextview拖動uiview ... ???
我曾嘗試以下,但它不能爲我的作品..
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *aTouch = [touches anyObject];
CGPoint location = [aTouch locationInView:self.noteTextView];
[UIView beginAnimations:@"Dragging A DraggableView" context:nil];
self.frame = CGRectMake(location.x, location.y, self.frame.size.width, self.frame.size.height);
[UIView commitAnimations];
}
這裏noteTextView是的UITextView的對象..
Y你不使用滾動視圖? – LML
不,我不能使用scrollview,bcoz我想uiview像小note.o它不會包含太多的數據.. !!! –