UITableView 从右到左对齐

发布于 2024-08-09 23:17:37 字数 100 浏览 9 评论 0原文

我正在为 iphone 3.0 开发一个阿拉伯语应用程序。 我想知道是否有一种方法可以将 UITableViewCell 转换为从右到左。 我希望一切都向相反的方向发展。 有什么想法吗?

I am working on an arabic app for iphone 3.0.
i was wondering if there is a way that i can convert the UITableViewCell to be right-to-left.
I want everything to be in the opposite direction.
Any thoughts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拍不死你 2024-08-16 23:17:37

创建您自己的 UITableViewCell 子类并不难,并且可能是您想要获得自定义外观所需要做的第一件事。您所需要的只是一个自定义 XIB 文件和 cellForRowAtIndexPath 函数中的一些修改代码:

NSString *CellIdentifier = @"IndividualContractWithResult";
UITableViewCell *cell;

...

cell = [thisTableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil)
{
    // TODO: improve code by avoiding the view controller creation
    UIViewController *vc = [[UIViewController alloc] initWithNibName:@"IndividualContractWithResult" bundle:nil];
    cell = (IndividualContractWithResult_Cell *) vc.view;
    [vc release];
}

Creating your own UITableViewCell subclass is not that hard to do and is probably the first thing you'll want to do to get a custom look. All you'll need is a custom XIB file and a bit of modified code in your cellForRowAtIndexPath function:

NSString *CellIdentifier = @"IndividualContractWithResult";
UITableViewCell *cell;

...

cell = [thisTableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil)
{
    // TODO: improve code by avoiding the view controller creation
    UIViewController *vc = [[UIViewController alloc] initWithNibName:@"IndividualContractWithResult" bundle:nil];
    cell = (IndividualContractWithResult_Cell *) vc.view;
    [vc release];
}
羅雙樹 2024-08-16 23:17:37

嗯..这真的很有趣)我没有解决方案,但很少有建议。首先,您可以尝试使用 CGAffineTransformInvert 来镜像您的表。如果它没有用,你可以自定义你的tableView单元格(在左侧制作一个UIImageView,在右侧制作带有UITextAlignmentRight的UILabel)。这是关于你的桌子的。如果你想转到另一个视图,你可以使用 UIViewAnimationTransitionFlipFromLeft 动画来更改表视图,而不是使用 UINavigationController。这不是一个很好的解决方案,但它可能会成功)祝你好运)

Hmm.. It's really interesting) I have no solution, but few suggestions. First of all, you can try to use CGAffineTransformInvert to mirror your table. If it wil be useless, you can customize your tableView cells(make an UIImageView at the left side and UILabel with UITextAlignmentRight at the right). This is about your table. If you want to go to another view, you can just change your table view with UIViewAnimationTransitionFlipFromLeft animation instead of using UINavigationController. It's not a pretty solution, but it may do the trick) Good luck)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文