标签: uiview

隐藏iPhone上边界之外的元素

我试图让UIView扩展(带动画),有点像手风琴菜单.我可以让动画正常工作,但问题是UIView的子视图正在扩展超过UIView的范围.

例如,视图的右上角有一个UILabel,高度为16.假设动画开始时UIView高度为0.随着UIView的发展,人们会期望视图的内容被隐藏并逐渐显露出来.例如,一旦高度达到8,标签的一半应该是可见的.然而事实并非如此 - 相反,标签在整个时间都是可见的,无论它的高度是否超出其父视图的高度.

任何想法如何解决这个问题?

iphone resize uiview

0
推荐指数
1
解决办法
721
查看次数

UIView是否会在Cocoa Touch中发布其子视图?

如果我在运行时创建一个UIControl并将其添加到视图中(通过addSubview :),视图是否会释放它,或者我应该这样做?

这是一个示例代码:

-(IBAction) cloneMe: (id) sender{

    if (!currentY) {
        currentY = [sender frame].origin.y;
    }

    UIButton *clone = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    CGRect cloneFrame = [sender frame];
    cloneFrame.origin.y += currentY + cloneFrame.size.height + 30;
    clone.frame = cloneFrame;
    [clone setTitle:@"I'm a clone" forState:UIControlStateNormal];

    [[sender superview] addSubview:clone];

    currentY = cloneFrame.origin.y + cloneFrame.size.height;


}
Run Code Online (Sandbox Code Playgroud)

cocoa cocoa-touch memory-management objective-c uiview

0
推荐指数
1
解决办法
626
查看次数

笔尖中的非全屏桌面视图

我想制作一个uiTableview应用程序,它的大小是屏幕的四分之一.我使用基于导航的应用程序启动了该项目.现在我想更改表视图以不填满整个屏幕,但还没有设法这样做.我在网上搜索了一个答案,但一直无法找到解决方案.

如果我将tableview放入'RootViewController.xib'中的另一个视图,我是否在正确的轨道上?

提前致谢!

iphone uitableview uiview ios

0
推荐指数
1
解决办法
2068
查看次数

为什么我的UIView表现得很迟钝?

我有一个UIView控制器,它有一个背景图像和一个UIWebView设置,可以通过autoresizeResizingMask属性自动调整方向更改.它在模拟器中运行平稳,但在设备上预览时非常缓慢.

我很少使用Web视图CALayer来创建边框和阴影,当我评论这些部分时,它运行得更顺畅.当玩CALayer(我怀疑)或者我是否错误地实现了这些部分时,这只是该课程的标准吗?

这是视图确实加载方法

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {

    NSLog(@"Web project View Controller");
    [super viewDidLoad];

    UIImageView *bg = [[UIImageView alloc] initWithFrame:self.view.bounds];
    bg.contentMode = UIViewContentModeCenter;
    bg.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
    bg.image = [UIImage imageNamed:@"fuzzyhalo.png"];
    [self.view addSubview:bg];


    projectView = [[UIWebView alloc] initWithFrame:self.view.bounds];
    projectView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
    projectView.layer.backgroundColor = [UIColor blackColor].CGColor;

    projectView.layer.shadowColor = [UIColor blackColor].CGColor;
    projectView.layer.shadowOpacity = 1.0;
    projectView.layer.shadowRadius = 5.0;
    projectView.layer.shadowOffset = CGSizeMake(0, 0);  

    projectView.layer.borderColor …
Run Code Online (Sandbox Code Playgroud)

cocoa-touch uiwebview calayer uiview

0
推荐指数
1
解决办法
247
查看次数

POP-UP UIView"IMDB App"风格

有没有一种简单的方法来完成这种弹出窗口(就像有UIPopoverController)或者我应该从头开始构建它?

http://dl.dropbox.com/u/1898217/la-foto.jpg

window popup uiview uipopovercontroller ios

0
推荐指数
1
解决办法
4574
查看次数

UIView的-drawRect:是否必须在主线程上调用?

是否-drawRect:必须在主线程上绘制UIView的方法,或者CADisplayLink 是否可以-setNeedsDisplay在不同的运行循环中调用自定义视图?

iphone uiview ios

0
推荐指数
1
解决办法
2033
查看次数

iphone:使用动画更改视图的内容

我需要这方面的帮助.我有3个视图控制器,表示Parent和Child1,Child2

在父viewcontollers我有一个名为容器和分段控件的视图.

现在,每当分段控件的值发生变化时,我希望这个"容器"视图的内容随动画而变化.

我已经做到这里,请告诉我需要添加什么:

if (selectSearchType.selectedSegmentIndex==0) {



    [aAdvanceSearchViewContoller.view removeFromSuperview];
    [container addSubview:aBasicSearchViewController.view];

}else {
    NSLog(@"Advance Search");
    [aBasicSearchViewController.view removeFromSuperview];
    [container addSubview:aAdvanceSearchViewContoller.view];
}
Run Code Online (Sandbox Code Playgroud)

iphone objective-c uiview ipad

0
推荐指数
1
解决办法
2269
查看次数

在堆叠视图之间传递数据

在我的应用程序中,我有几个视图..并且使用导航控制器推送和弹出其中一些视图.在某些视图中,我有一个表视图,其中每个单元格都是一个视图本身,因此当选择单元格时,将执行以下代码:

DetailView *detailViewController = [[Detailview alloc] initWithNibName:@"Detailview" bundle:nil];
    [self.navigationController pushViewController:detailViewController animated:YES];
    [detailViewController release];
Run Code Online (Sandbox Code Playgroud)

在详细视图中,当单击特定按钮时(例如,返回/取消按钮),将执行此代码:

[self.navigationController popViewControllerAnimated:YES];
Run Code Online (Sandbox Code Playgroud)

我想要的是将数据从detailview传递到它之前的视图(初始化它的视图).到目前为止,我已经实现了一个名为"Globals.h"的类,其中我将要传递的数据放在其中,并在这些数据变量上使用"extern"以确保它对于许多类来说是全局的,并且它有效正常.但我不认为这是适当的方式.还有其他好办法吗?

提前致谢 :)

iphone xcode uiview navigationcontroller ios

0
推荐指数
1
解决办法
1694
查看次数

为什么这个自定义UIView代码不显示UILabel?

当我使用这个自定义的UIView来显示一行3 x UILabels时,我有点想看看为什么,当我看到红色的轮廓为框架时,我在框架内看不到任何东西.那就是标签没有出现,我设置的UILabels的黑色边框也没有出现.

谁能在这里发现问题?

#import <UIKit/UIKit.h>
@interface LabelRowView : UIView {
    UILabel *_dateLabel;
    UILabel *_titleLabel;
    UILabel *_locationLabel;
}
@property (nonatomic, retain) UILabel *dateLabel;
@property (nonatomic, retain) UILabel *titleLabel;
@property (nonatomic, retain) UILabel *locationLabel;
- (void)setFont:(UIFont *)newFont;
- (void)setDataWithDate:(NSString*)dateStr AndTitle:(NSString*)titleStr AndLocation:(NSString*)locationStr;
@end

// ==============================================================

@implementation LabelRowView
    @synthesize dateLabel = _dateLabel;
    @synthesize titleLabel = _titleLabel;
    @synthesize locationLabel = _locationLabel;

- (void)setDefaultsForLabel:(UILabel*)label {
    label.layer.borderColor = [UIColor blackColor].CGColor;
    label.layer.borderWidth = 1.0;
    label.textAlignment = UITextAlignmentLeft;
    label.lineBreakMode = UILineBreakModeTailTruncation;
    label.opaque = YES;   // TODO: put back …
Run Code Online (Sandbox Code Playgroud)

iphone uiview uilabel ios

0
推荐指数
1
解决办法
1226
查看次数

如何解除使用pushViewController方法呈现的视图?

我的情况如下:

1)我有带有navigationController的rootViewController并在工具栏中添加按钮.当我按下我使用pushViewController方法推送另一个视图.这个视图叫做chooseTypeView,它只有两个单元格的tableview.

2)当点击任何单元格时,将使用相同的方法推送第三个视图以输入一些数据.

3)现在我想按下键盘上的"完成"按钮导航回rootView控制器并关闭当前步骤和根视图之间的所有视图.

我正在使用@Protocol连接视图,我可以将信息从最后一个视图传递到根视图,但我无法忽略它.

谢谢大家,我希望我能说清楚.

uiview uinavigationcontroller pushviewcontroller

0
推荐指数
1
解决办法
3883
查看次数