我目前有一個視圖,其中有一個scrollView。在那個scrollView上,我有一個按鈕和一個UITableView。在滾動視圖中移動按鈕 - iOS
鑑於某些條件,我想將這兩件事情提出來。我目前正在這樣做:
tempFrame = [addressTableView frame];
tempFrame.origin.x = 0.0;
tempFrame.origin.y = 2.0;
tempFrame.size.width = 320.0;
tempFrame.size.height = 103.0;
[addressTableView setFrame:tempFrame];
// [self.scrollView addSubview:self.addressTableView]; (does not do anything)
tempFrame = [buttonContinue frame];
tempFrame.origin.x = 20.0;
tempFrame.origin.y = 40.0;
tempFrame.size.width = 150.0;
tempFrame.size.height = 25.0;
[buttonContinue setFrame:tempFrame];
// [self.scrollView addSubview:self.buttonContinue]; (does not do anything)
此方法適用於沒有scrollView的視圖。
關於如何在scrollView中正確移動對象的任何提示將不勝感激。
謝謝。
感謝您的答覆。不幸的是,這不起作用。我嘗試了兩種方法。我認爲這可能與這個按鈕和表視圖位於「視圖」內的scrollView上有關。但請注意,這兩者的「引用插座」都是文件的所有者。 – FidelCashflo
你的按鈕是否連接到他們的IBOutlets(並且是那些IBOutlets屬性?) – Fluffhead
是的,它們被連接起來,它們也是屬性。 – FidelCashflo