- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有一个 UIVew 容器,用于随机生成、旋转并放置到该 View 中的多个 UILabel,如果我使用角度 0、90、180、270 看起来不错,但如果角度随机生成的标签看起来展开,这对我来说是个问题因为单词应该放置得非常近并且没有交集,所以生成器看起来是这样的:
- (void) generate:(UIView *)container
words:(NSArray *)words
colors:(NSArray *)colors
minFontSize:(float)minSize
maxFontSize:(float)maxSize
rotateWords:(BOOL)rotate
useAngleRange:(BOOL)useRange
{
usingRange = useRange;
for (int i = 0; i < [words count]; i++) {
UILabel *word_l = [[UILabel alloc] init];
word_l.font = [UIFont fontWithName:@"EuropeBold" size:[self getRandomNumberBetween:minSize to:(i < probableBigFontWords) ? maxSize : (maxSize / 3)]];
[word_l setText:words[i]];
[word_l setTextColor:colors[arc4random_uniform([colors count])]];
[word_l setBackgroundColor:[UIColor clearColor]];
[word_l sizeToFit];
CGRect fr = CGRectMake(0,
0,
word_l.frame.size.width,
word_l.frame.size.height);
word_l.frame = fr;
word_l.center = CGPointMake([self getRandomNumberBetween:175 to:639], [self getRandomNumberBetween:175 to:375]);
if (rotate) {
int angleType = arc4random_uniform(2);
if (useRange) {
int angle = (angleType == 1) ? [self getRandomNumberBetween:0 to:90] : [self getRandomNumberBetween:270 to:360];
[word_l setTransform:CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(angle))];
} else {
[word_l setTransform:CGAffineTransformMakeRotation((angleType == 1) ? DEGREES_TO_RADIANS(270) : DEGREES_TO_RADIANS(360))];
}
}
[container addSubview:word_l];
while ([self viewIntersectsWithAnotherView:container chosenView:word_l]) {
viewPositionMovingStep++;
[self placeItem:container :word_l];
}
}
}
- (void)placeItem:(UIView *)container :(UILabel *)word_l
{
CGRect initFr = word_l.frame;
for (int i = 1; i <= 8; i++) {
CGRect f = word_l.frame;
switch (i) {
case 1:
f.origin.x = f.origin.x + viewPositionMovingStep;
break;
case 2:
f.origin.x = f.origin.x + viewPositionMovingStep;
f.origin.y = f.origin.y + viewPositionMovingStep;
break;
case 3:
f.origin.y = f.origin.y + viewPositionMovingStep;
break;
case 4:
f.origin.x = f.origin.x - viewPositionMovingStep;
f.origin.y = f.origin.y + viewPositionMovingStep;
break;
case 5:
f.origin.x = f.origin.x - viewPositionMovingStep;
break;
case 6:
f.origin.x = f.origin.x - viewPositionMovingStep;
f.origin.y = f.origin.y - viewPositionMovingStep;
break;
case 7:
f.origin.y = f.origin.y - viewPositionMovingStep;
break;
case 8:
f.origin.x = f.origin.x + viewPositionMovingStep;
f.origin.y = f.origin.y - viewPositionMovingStep;
break;
default:
break;
}
word_l.frame = f;
if ([self viewIntersectsWithAnotherView:container chosenView:word_l]) {
word_l.frame = initFr;
} else {
viewPositionMovingStep = 0;
return;
}
}
}
-(BOOL)viewIntersectsWithAnotherView:(UIView *)container chosenView:(UIView *)chosenView
{
for(UIView *view in [container subviews]){
if (![chosenView isEqual:view]){
BOOL framePartiallyOut = !CGRectEqualToRect(CGRectIntersection(chosenView.superview.bounds, chosenView.frame), chosenView.frame);
if (usingRange) {
if([self view:chosenView intersectsWith:view] || framePartiallyOut){
return YES;
}
} else {
if(CGRectIntersectsRect(chosenView.frame, view.frame) || framePartiallyOut){
return YES;
}
}
}
}
return NO;
}
- (BOOL)view:(UIView *)view1 intersectsWith:(UIView *)view2
{
CGPoint poly1[4];
CGRect bounds1 = view1.bounds;
poly1[0] = [view1 convertPoint:bounds1.origin toView:nil];
poly1[1] = [view1 convertPoint:CGPointMake(bounds1.origin.x + bounds1.size.width, bounds1.origin.y) toView:nil];
poly1[2] = [view1 convertPoint:CGPointMake(bounds1.origin.x + bounds1.size.width, bounds1.origin.y + bounds1.size.height) toView:nil];
poly1[3] = [view1 convertPoint:CGPointMake(bounds1.origin.x, bounds1.origin.y + bounds1.size.height) toView:nil];
CGPoint poly2[4];
CGRect bounds2 = view2.bounds;
poly2[0] = [view2 convertPoint:bounds2.origin toView:nil];
poly2[1] = [view2 convertPoint:CGPointMake(bounds2.origin.x + bounds2.size.width, bounds2.origin.y) toView:nil];
poly2[2] = [view2 convertPoint:CGPointMake(bounds2.origin.x + bounds2.size.width, bounds2.origin.y + bounds2.size.height) toView:nil];
poly2[3] = [view2 convertPoint:CGPointMake(bounds2.origin.x, bounds2.origin.y + bounds2.size.height) toView:nil];
CGPoint ctl2 = [view1 convertPoint:poly2[0] fromView:nil];
if (CGRectContainsPoint(view1.bounds, ctl2)){
return YES;
}
CGPoint ctr2 = [view1 convertPoint:poly2[1] fromView:nil];
if (CGRectContainsPoint(view1.bounds, ctr2)){
return YES;
}
CGPoint cbr2 = [view1 convertPoint:poly2[2] fromView:nil];
if (CGRectContainsPoint(view1.bounds, cbr2)){
return YES;
}
CGPoint cbl2 = [view1 convertPoint:poly2[3] fromView:nil];
if (CGRectContainsPoint(view1.bounds, cbl2)){
return YES;
}
CGPoint ctl1 = [view2 convertPoint:poly1[0] fromView:nil];
if (CGRectContainsPoint(view2.bounds, ctl1)){
return YES;
}
CGPoint ctr1 = [view2 convertPoint:poly1[1] fromView:nil];
if (CGRectContainsPoint(view2.bounds, ctr1)){
return YES;
}
CGPoint cbr1 = [view2 convertPoint:poly1[2] fromView:nil];
if (CGRectContainsPoint(view2.bounds, cbr1)){
return YES;
}
CGPoint cbl1 = [view2 convertPoint:poly1[3] fromView:nil];
if (CGRectContainsPoint(view2.bounds, cbl1)){
return YES;
}
return NO;
}
-(int)getRandomNumberBetween:(int)from to:(int)to
{
return (int)from + arc4random() % (to-from+1);
}
这是正确放置标签的方式:
这个示例短词具有随机生成的角度(范围 270-360、0-90):
正如您所注意到的,那里没有显示文本,标签看起来展开了,并且交叉检查器在这种情况下不起作用,如果从 viewDidLoad
或 viewDidApper
调用此检查器根本不起作用,我真的需要帮助,有什么想法吗?谢谢!
最佳答案
调整大小的问题是这样解决的:
- (void)placeItem:(UIView *)container :(UILabel *)word_l
{
CGPoint initPoint = word_l.center;
for (int i = 1; i <= 8; i++) {
switch (i) {
case 1:
word_l.center = CGPointMake(word_l.center.x + viewPositionMovingStep, word_l.center.y);
break;
case 2:
word_l.center = CGPointMake(word_l.center.x + viewPositionMovingStep, word_l.center.y + viewPositionMovingStep);
break;
case 3:
word_l.center = CGPointMake(word_l.center.x, word_l.center.y + viewPositionMovingStep);
break;
case 4:
word_l.center = CGPointMake(word_l.center.x - viewPositionMovingStep, word_l.center.y + viewPositionMovingStep);
break;
case 5:
word_l.center = CGPointMake(word_l.center.x - viewPositionMovingStep, word_l.center.y);
break;
case 6:
word_l.center = CGPointMake(word_l.center.x - viewPositionMovingStep, - viewPositionMovingStep);
break;
case 7:
word_l.center = CGPointMake(word_l.center.x, word_l.center.y - viewPositionMovingStep);
break;
case 8:
word_l.center = CGPointMake(word_l.center.x + viewPositionMovingStep, word_l.center.y - viewPositionMovingStep);
break;
default:
break;
}
if ([self viewIntersectsWithAnotherView:container chosenView:word_l]) {
word_l.center = initPoint;
} else {
viewPositionMovingStep = 0;
return;
}
}
}
原因是:使用 transform 属性时,您不能通过更改框架来更改位置,您必须使用 center 属性。
因此这部分已修复,但留下了与旋转 View 相交相关的问题,检查器无法正常工作,但在其他项目中单独测试它表现良好。
他在那里:
- (BOOL)view:(UIView *)view1 intersectsWith:(UIView *)view2
{
CGPoint poly1[4];
CGRect bounds1 = view1.bounds;
poly1[0] = [view1 convertPoint:bounds1.origin toView:nil];
poly1[1] = [view1 convertPoint:CGPointMake(bounds1.origin.x + bounds1.size.width, bounds1.origin.y) toView:nil];
poly1[2] = [view1 convertPoint:CGPointMake(bounds1.origin.x + bounds1.size.width, bounds1.origin.y + bounds1.size.height) toView:nil];
poly1[3] = [view1 convertPoint:CGPointMake(bounds1.origin.x, bounds1.origin.y + bounds1.size.height) toView:nil];
CGPoint poly2[4];
CGRect bounds2 = view2.bounds;
poly2[0] = [view2 convertPoint:bounds2.origin toView:nil];
poly2[1] = [view2 convertPoint:CGPointMake(bounds2.origin.x + bounds2.size.width, bounds2.origin.y) toView:nil];
poly2[2] = [view2 convertPoint:CGPointMake(bounds2.origin.x + bounds2.size.width, bounds2.origin.y + bounds2.size.height) toView:nil];
poly2[3] = [view2 convertPoint:CGPointMake(bounds2.origin.x, bounds2.origin.y + bounds2.size.height) toView:nil];
CGPoint ctl2 = [view1 convertPoint:poly2[0] fromView:nil];
if (CGRectContainsPoint(view1.bounds, ctl2)){
return YES;
}
CGPoint ctr2 = [view1 convertPoint:poly2[1] fromView:nil];
if (CGRectContainsPoint(view1.bounds, ctr2)){
return YES;
}
CGPoint cbr2 = [view1 convertPoint:poly2[2] fromView:nil];
if (CGRectContainsPoint(view1.bounds, cbr2)){
return YES;
}
CGPoint cbl2 = [view1 convertPoint:poly2[3] fromView:nil];
if (CGRectContainsPoint(view1.bounds, cbl2)){
return YES;
}
CGPoint ctl1 = [view2 convertPoint:poly1[0] fromView:nil];
if (CGRectContainsPoint(view2.bounds, ctl1)){
return YES;
}
CGPoint ctr1 = [view2 convertPoint:poly1[1] fromView:nil];
if (CGRectContainsPoint(view2.bounds, ctr1)){
return YES;
}
CGPoint cbr1 = [view2 convertPoint:poly1[2] fromView:nil];
if (CGRectContainsPoint(view2.bounds, cbr1)){
return YES;
}
CGPoint cbl1 = [view2 convertPoint:poly1[3] fromView:nil];
if (CGRectContainsPoint(view2.bounds, cbl1)){
return YES;
}
return NO;
}
有人有想法吗?
关于ios - 随机放置的 UILabel 旋转后尺寸错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38989888/
我有一个 UILabel,其不透明度已通过使用 [UIColor clearColor] 更改为空白我现在想将标签内文本的不透明度更改为尽可能完整的级别。我该怎么做? 最佳答案 使用以下代码更改UIL
我在同一个站点中阅读了如何插入和 UILabel(子类 UILabel 并覆盖所需的方法)。在将它添加到我的应用程序之前,我决定在一个独立的测试应用程序中对其进行测试。代码如下所示。 这是 MyUIL
NSString *longStr = @"AAAAAAAAAA\nBBBBB\nCCCCCCCCCCCCCCCCCC"; 如何使用 UILabel 截断某些标签宽度: AAA... BBB...
我想在 UILabel.text 上有一个纹理。 这样做我对 UILabel 进行了子类化。使用 -drawTextInRect 方法,我尝试仅获取用于使用 CGImageMaskCreate 函数创
我正在尝试使用 iOS 6.0 中新的自动布局 api 构建动态布局。我尝试构建的布局有 2 个按钮,它们之间有一个标签,如下图所示: 我想要的是以灰色显示的容器 View 根据标签中的文本量增加或减
我不知道这是否是我做错了什么,但每次 iOS 6 到 7、7 到 8 以及从 8 到 9 的重大更新时,一些 UILabel 似乎不够大,我看到“...”因为标签被截断了。我现在必须通过应用程序并重置
我偶然发现了一个我不确定如何解决的问题。 正如您在此处看到的名称应该所在的标签(我从用户输入中获取名称,这意味着它是动态的)。如果写得太长,它只会覆盖其他标签。 此外,在 Storyboard中,UI
我是初学者,所以对于任何似乎被忽视或简单的事情,我深表歉意。 基本上,我想要做的是让屏幕上的日期选择器更新 UILabel,然后获取更新 UILabel 的结果并将其推回到前一个屏幕上的另一个 UIL
我有一个 UILabel 的 NSMutableArray。我需要能够在用户触摸时选择此 NSMutableArray 中的特定 UILabel,并将此触摸 UILabel 的中心移动到用户将手指拖动
我知道对于类的元素 UIButton和 UIBarButtonItem他们自动假设window.tintColor作为主要颜色,如果我在应用程序中随时为窗口设置新的 tintColor,则会立即更改。
我是开发者世界的新人,自 2 月份以来一直断断续续地使用 swift 和 Xcode。我希望有人能帮助我。我正在尝试制作一个简单的小费计算器,但似乎无法将两个 uilabels 放在一起。这就是我到目
我有一个单元格原型(prototype),我正在尝试向其添加两个标签。我有两个紧挨着的标签,但标签的大小是动态的,所以我希望第二个标签能够根据第一个标签的大小移动。 基本上,我希望两个标签之间有一个固
这个问题看起来很平常..但是我昨天遇到了问题,我在 xib 中添加了一个标签并为其创建了导出,我想要在该标签内有多行,按钮,所以我决定添加新的子里面有标签... UILabel *label; lab
我正在尝试实现一个可以更改 uilabel 字体大小的功能,我可以缩放 uilabel 大小(即 uilabel.size),然后自动更改 uilabel 的字体大小,示例应用程序是 InstaTex
如果我设置bottomLabel.text = Chinese character,当我运行它时我看不到aboveLabel,如果我调试 View 层次我可以看到它。so有什么问题吗? UIL
我不太确定标题是否符合我的要求,但我有一个带有一堆句子的 label,我想将它们中的每一个分开到不同的 UILabel 这是我的代码 var s: [String] = [] for (i
当我更改 UILabel 的文本属性时,它只会在应用程序中部分更新。 我试过将它放在 viewDidLoad 函数和单独的专用函数中,但无济于事。如果我在更新后将 Label.text 打印到控制台,
我正在尝试使用自动布局对齐两个 UILabel,其中第一个标签没有设置宽度但使用固有内容大小,第二个应该与第一个宽度相同,将文本换行。 理想情况下,第二个标签应将数字行设置为 0 以使用动态类型,但我
我有几个标签,它们永远不应该相互接触。见下图(忽略黄色字母): 一共是4个标签,2个选手名字,2个分数。球员的名字将取代原来的球员标签文本。所以“玩家 1:”可以是任意宽度的任意文本。标签在 View
我正在开发一个应用程序,我需要能够点击并拖动 UILabels。第二个挑战是我需要屏幕上的其他 UILabel 相互移开(切勿重叠)。因此,当我拖动一个标签并遇到另一个标签时,它会将第二个标签撞开。也
我是一名优秀的程序员,十分优秀!