这是我在网上下的一个框架,做了一点修改,点击箭头会弹出那个标题选择页面,再点击会隐藏并显示上面的一排标题
这个是隐藏时调用的方法,
(void)itemClick:(HASortButton *)item{
HACursor * cur =[[HACursor alloc] init];
[cur hiddenSortItemView];
}
这个是标题按钮点击触发的方法,我在按钮方法里调用了隐藏标题选择页的方法,可是方法调用了却没有效果,问一下是什么原因?
补充一下,我现在能够在这边调用隐藏方法,但是该有的隐藏效果没出来
This is obvious. You created a new object in click to call the hidden method. They are not the same object and will definitely not be hidden.