- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发一个库,它获取一组图像并返回一个并排显示图像的 ScrollView 。
但是,当我添加这个 scrollView 时,我要返回到我的主视图,它不会添加图像。图片正确。
我的想法是使用一个 ScrollView ,每个图像并排显示,并使用滚动条像幻灯片一样显示。首先,这个概念可以吗?
其次,我不明白为什么在模拟器中运行应用程序时不显示图像。
如需更多详细信息,请询问。
代码如下。我的头文件:
#import <UIKit/UIKit.h>
@interface HCIImageSlideShowView : UIScrollView
-(void) setImages:(NSArray*) imagesArray;
-(void) setBounds:(CGRect)bounds;
-(void) setCaptions:(NSArray*) imageCaptionsArray;
-(void) isEditable:(BOOL)edit;
-(void) setSlideTime:(int) milliSeconds;
-(void) startSlideShow;
- (id) initWithImages:(NSArray*)imagesArray captionsArray:(NSArray*) captionArray
bounds:(CGRect)bounds slideTime:(int)milliSeconds;
@end
我的实现文件:
#import "HCIImageSlideShowView.h"
#import "HCIResultListViewController.h"
@interface HCIImageSlideShowView ()
@property (strong,nonatomic) NSMutableArray *imagesArray;
@property BOOL editable;
@property (nonatomic) int slideTime;
@property (strong,nonatomic) NSMutableArray *imageCaptionsArray;
@property CGFloat width;
@end
@implementation HCIImageSlideShowView
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
- (id) initWithImages:(NSArray*)imagesArray captionsArray:(NSArray*) captionArray
bounds:(CGRect)bounds slideTime:(int)milliSeconds
{
NSLog([NSString stringWithFormat:@"%f,%f", bounds.size.width , bounds.size.height]);
CGFloat width_t = bounds.size.width;
bounds.size.width = [imagesArray count] * bounds.size.width;
self = [[HCIImageSlideShowView alloc] initWithFrame:bounds];
_width = width_t;
[self setBackgroundColor:[[UIColor alloc] initWithRed:0.2 green:0.1 blue:0.3 alpha:0.4]];
if (self) {
[self setImages:imagesArray];
[self setSlideTime:milliSeconds];
[self setCaptions:captionArray];
[self defaultLoad];
}
self.scrollEnabled = YES;
return self;
}
-(void) defaultLoad
{
NSLog([NSString stringWithFormat:@"%f,%f,%f",_width,self.bounds.size.height,self.bounds.size.width]);
for (int i = 0; i < [_imagesArray count]; i++) {
CGRect imageBounds = CGRectMake(i * _width, self.bounds.size.height, _width, self.bounds.size.height);
UIImageView *imageView = [[UIImageView alloc] initWithFrame:imageBounds];
[imageView setImage:[HCIResultListViewController resizeImage:_imagesArray[i] withWidth:_width withHeight:self.bounds.size.height]];
NSLog([NSString stringWithFormat:@"%f,%f",imageView.bounds.size.height,imageView.bounds.size.width]);
[self addSubview:imageView];
}
}
-(void) setBounds:(CGRect)bounds
{
self.bounds = bounds;
}
-(void) setImages:(NSArray *)imagesArray
{
_imagesArray = [[NSMutableArray alloc] initWithArray:imagesArray];
}
-(void) setSlideTime:(int)milliSeconds
{
_slideTime = milliSeconds;
}
-(void) startSlideShow
{
}
-(void) isEditable:(BOOL)edit
{
_editable = edit;
}
-(void) setCaptions:(NSArray *)imageCaptionsArray {
_imageCaptionsArray = [[NSMutableArray alloc] initWithArray:imageCaptionsArray];
}
@end
最佳答案
您的代码似乎有很多错误 - 特别是您的初始化程序。这是注释版本
@interface HCIImageSlideShowView : UIScrollView
-(void) startSlideShow;
- (id) initWithImages:(NSArray*)imagesArray captionsArray:(NSArray*) captionArray
bounds:(CGRect)bounds slideTime:(int)milliSeconds;
/*
remove this custom initialiser as it is quite wrong.
Use the default initialiser (don't override)
then set the properties after you have created the object.
*/
/* Remove all of your custom setters.
If any of these properties need setting outside of the class,
move the property declarations to the .h file.
*/
-(void) setImages:(NSArray*) imagesArray;
-(void) setBounds:(CGRect)bounds;
-(void) setCaptions:(NSArray*) imageCaptionsArray;
-(void) isEditable:(BOOL)edit;
-(void) setSlideTime:(int) milliSeconds;
@end
#import "HCIImageSlideShowView.h"
#import "HCIResultListViewController.h"
@interface HCIImageSlideShowView()
/*
make these properties public by moving them to your .h file
so that you can set them from the calling object
*/
@property (strong,nonatomic) NSMutableArray *imagesArray;
@property BOOL editable;
@property (nonatomic) int slideTime;
@property (strong,nonatomic) NSMutableArray *imageCaptionsArray;
@property CGFloat width;
@end
@implementation HCIImageSlideShowView
- (id) initWithImages:(NSArray*)imagesArray captionsArray:(NSArray*) captionArray
bounds:(CGRect)bounds slideTime:(int)milliSeconds
/*
You seem to be getting confused with init,
so I suggest you do not make a custom init method at all.
Initialise your object with the default initWithFrame,
then have the caller set properties on your newly
made object after initiliasation.
*/
{
NSLog([NSString stringWithFormat:@"%f,%f", bounds.size.width , bounds.size.height]);
/*
This is the way to use NSLog...
NSLog(@"%f,%f", bounds.size.width , bounds.size.height);
*/
CGFloat width_t = bounds.size.width;
/*
double assignment: two lines further down you assign
width_t to _width. You can do that here in one step
*/
bounds.size.width = [imagesArray count] * bounds.size.width;
self = [[HCIImageSlideShowView alloc] initWithFrame:bounds];
/*
This is wrong. Although as Hermann says it may be _legal_, don't do it!
-Never alloc an object inside it's own initialiser.
The memory will already have been alloc'd by the caller.
- Never assign to self anything but the return value from super's init.
*/
_width = width_t;
/*
please be consistent with your iVar/property naming.
Here you are addressing the ivar _width, 2 lines up
you are using the property accessor syntax self.bounds.
In you case I would recommend ALWAYS using self.varName
except inside a custom setter or getter.
*/
[self setBackgroundColor:[[UIColor alloc] initWithRed:0.2 green:0.1 blue:0.3 alpha:0.4]];
if (self) {
//[self setImages:imagesArray];
self.imagesArray = [imagesArray mutableCopy];
//[self setSlideTime:milliSeconds];
self.slideTime = milliSeconds;
//[self setCaptions:captionArray];
self.imageCaptionsArray = [captionArray mutableCopy];
/*
As my comment above - use property syntax and try to
avoid writing your own setters and getters
unless you have a very good reason.
*/
[self defaultLoad];
}
self.scrollEnabled = YES;
return self;
}
由于您的初始化代码需要一些重新安排,我没有仔细查看 defaultLoad
- 但是我确实有一些观察结果......
(1)
CGRect imageBounds = CGRectMake(i * _width, self.bounds.size.height, _width, self.bounds.size.height);
应该是
CGRect imageBounds = CGRectMake(i * _width,0, _width, self.bounds.size.height);
否则,您的图片将全部放置在 ScrollView 高度下方的屏幕外。
(2)
你需要设置一个contentSize,这样scrollView才能滚动
[scrollView setContentSize:(CGSize){self.width*[imageArray count],self.bounds.size.height}];
另一个更笼统的评论是,这对于一些图像来说是可以的,但是你不希望制作一个带有大量屏幕外 ImageView 的 ScrollView ,因为你会耗尽内存。您实际上只需要三个,用于当前屏幕上的图像,以及左右两侧的上一张和下一张图像。这个想法是仅在您可能需要时加载您的图像,并像 tableView 的工作方式一样回收您的 imageView。
你应该看看Apple's Photoscroller sample app以及随附的 WWDC 2010/11 视频和 slides
不要担心有关平铺和缩放的所有细节,最好了解将对象创建保持在最低限度并在可行的情况下回收/重用对象的一般原则。
顺便说一句,您可能根本不需要自定义 scrollView 对象:您可以从调用 viewController 对象的几行代码中实现大部分您想要的。例如……
- (void) viewDidLoad {
[super viewDidLoad];
UIScrollView* scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
[scrollView setBackgroundColor:[UIColor redColor]];
NSArray* imageArray = @[[UIImage imageNamed:@"image1.png"]
,[UIImage imageNamed:@"image2.png"]
,[UIImage imageNamed:@"image3.png"]
];
CGFloat width = scrollView.bounds.size.width;
CGFloat height = scrollView.bounds.size.height;
for (int i = 0; i < [imageArray count]; i++) {
CGRect imageFrame = CGRectMake(i * width, 0, width, height);
UIImageView *imageView = [[UIImageView alloc] initWithFrame:imageFrame];
[imageView setImage:imageArray[i]];
[scrollView addSubview:imageView];
}
[scrollView setContentSize:(CGSize){width*[imageArray count],height}];
[self.view addSubview:scrollView];
}
关于ios - UIImageView 未添加到 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15478155/
我有一个 uiview,其中包含其他自定义绘制的 uiview。现在我希望,当用户单击此父 View 时,它将扩展到带有动画的新定义的框架。我使用动画 block 取得了一些成功。问题是展开的 Vie
我正在创建当前显示的 UIView 的屏幕截图。在此过程中,我遇到了控件扭曲和拉伸(stretch)片刻(0.2-0.5 秒)的问题。它仅适用于 iPhone 6、6+。 我的简单代码在这里 (Xam
我想让主 UIView 负责将多个 UIView 之一添加为 subview 。由于任何时候只有一个 subview 处于事件状态,而 subview 完全覆盖了主视图,所以我还不如更换主视图。但这需
这真的只是好奇,但是标签属性有最大值吗?我假设标签是一个 UINT,但我不确定。 最佳答案 “标签”属性是一个 NSInteger。来自 Apple 的 docs : NSInteger Used t
我的布局中有一个 UIView 以便进行一些剪辑和分组,但是自动布局会在缩小时调整它的大小。我想给它一个固定的高度,但唯一的选择是设置顶部和底部空间。 有没有办法设置明确的高度约束? 最佳答案 我刚刚
使用 NSLayoutConstraint类,可以创建基于 View 基线 ( NSLayoutAttributeBaseline ) 的约束。但是,我还没有看到任何描述 UIView 的文档。实际上
我正在尝试创建一个 UIView,它显示一个半透明的圆圈,其边界内有一个不透明的边框。我希望能够通过两种方式更改边界 - 在 -[UIView animateWithDuration:animatio
我目前正在 iOS 中开发一个项目(使用 XCode 和 Swift)。我正在尝试为登录 View 实现以下 UITextFields: 我正在考虑不同的方法来做这件事,但它们看起来都很复杂。如果有人
我正在使用最新的 SDK 开发 iOS 应用程序。 我创建了一个自定义 UIView,我需要向该 UIView 添加一些控件。我也在使用 storyboards,并且我必须向其中添加这个 UIView
我已经通过界面生成器在 super View 中启用了Autoresize Subviews。有没有办法以编程方式禁用一个 subview View 的自动调整大小? 最佳答案 我假设您确实在使用自动
我正在寻找用 Swift 2.0 编写的适用于 iOS 8.0 或更高版本的答案。我有一个圆形的 UIView,我想扩展它但保留圆形的属性。 要设置 UIView,这是代码。 let frame: C
我有一个有趣的问题,但我不确定如何解决它。我正在尝试使用 @IBInspectable 扩展 UIView。但是,使用这种方法,拐角半径似乎是从 nib 文件的默认端设置的,而不是 View 的实际大
我想将 UIView 移动到圆圈内。 UIView 移动圆内的每个点,但不接触圆的边界线。我正在计算圆和 UIView 之间的距离。 var distance = sqrt( pow((tou
A 是一个自定义的 UIView B是UIImagePickerController.view,这个UIImagePickerController.showsCameraControls = NO A
我无法在启动时修改我的 UIView 高度。 我必须使用 UIView,我希望其中一个屏幕大小 * 70,另一个填补空白。 这是我的 @IBOutlet weak var questionFrame
我一直在想这个问题。 我的情况是我需要在 View 中显示很多网格,我有两个计划。 1、在UIView上画很多矩形。我试过了,但是当我放大 View 时,这条线很模糊。 2、给UIView添加很多CA
我可以通过简单地将容器拖动到新的 UIView 来成功地将第一个 UIView 嵌入到容器中,但是要添加过渡 View ,我无法在按键输入事件上用新 View 替换当前的嵌入 View 。 这是我的代
问题是... 我有一条路径,我创建了一个在其中绘制它的 View 。 View 与路径具有相同的维度。然后,我创建第二个 View ,在其中重写 sizeThatFit: 方法,以便缩放第一个 Vie
我正致力于快速设计自定义 UIimageview。我想使用类似于此的 beizerpath 创建一个 UIimageview 编码应该是快速的。任何帮助表示赞赏。谢谢 最佳答案 创建一个 CAShap
我有一个 iOS 应用程序可以在 UIView 上动态绘制形状(通过 drawRect),我正在研究将该应用程序(或其中的一小部分)移植到 Apple Watch 的可能性。不幸的是,在阅读相关帖子后
我是一名优秀的程序员,十分优秀!