小编Nic*_*ver的帖子

如何在iPhone中制作半卷曲动画,如地图应用程序?

我正在使用以下代码进行页面卷曲动画

[UIView beginAnimations:@"yourAnim" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:yourView cache:cacheFlag];
...
[UIView commitAnimations];
Run Code Online (Sandbox Code Playgroud)

是否有可能像iphone/ipod上的maps.app一样制作半卷曲动画?

任何想法如何产生类似的效果?

谢谢

iphone uikit uiviewanimation uiviewanimationtransition

6
推荐指数
2
解决办法
6686
查看次数

在iphone sdk中搜索并保存谷歌图像中的图像

在我的应用程序中,我需要从谷歌图像中搜索特定单词的图像.

例如,我想搜索图像Earth.

如何从Google图像搜索图像并将所选图像保存在文档目录中?

我可以使用任何API吗?或者其他任何方式吗?

iphone cocoa-touch objective-c ios4

6
推荐指数
1
解决办法
7095
查看次数

如何在javascript中禁用标签标签

我需要<label>在html中使用tag 创建五个标签.然后,当单击任何一个标签时,必须禁用所有其他四个标签.我搜索了谷歌,但无法找到如何禁用标签标签.有没有办法做到这一点.任何建议......

<label for="u">username1</label>
<label for="u">username2</label>
<label for="u">username3</label>
<label for="u">username4</label>
<label for="u">username5</label>
Run Code Online (Sandbox Code Playgroud)

javascript tags

6
推荐指数
3
解决办法
2万
查看次数

如何在 UIScrollView 中移动 UIImageView?

在我的应用程序中,我在 UIScrollView 中有一个 UIImageView。我想缩放和拖动 UIImageView。我设法进行了缩放,但似乎找不到使用 touchesMoved 在 UIScrollView 内拖动图像的方法。我在谷歌上搜索过,但似乎我发现的唯一方法只能在 iOS 3.0+ 中使用,但现在在 iOS 4.0+ 中已过时。那么如何用手指拖动 UIScrollView 中的图像呢?

iphone cocoa-touch objective-c uiscrollview uiimageview

5
推荐指数
1
解决办法
2747
查看次数

在NSMutableSet中查找具有相同属性值的对象

我有NSMutableSet对象.所有对象显然都是唯一的,但它们可能具有相同的.angle值,即NSInteger属性.

我需要找出是否有两个或更多具有相同.angle值和组的对象然后进入一个数组.

我怎样才能做到这一点?
任何指导都将非常感谢

iphone objective-c nsmutableset

5
推荐指数
1
解决办法
3383
查看次数

当我设置锚点时,我的图像没有加载

我有一个UIView,我正在加载我的图像视图作为子视图.当我没有设置锚点时图像显示,但每当我设置锚点时图像都没有显示.我还添加了QUARTZCore框架工作.

我在下面添加我的代码

CGRect apprect=CGRectMake(0, 0, 1024, 768);
UIView *containerView = [[UIView alloc] initWithFrame:apprect1];
containerView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:containerView];

handleView1= [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"large.gif"]];
[handleView1 setAlpha:1];
//[handleView1 setFrame:CGRectMake(390, 172.00, 56.00, 316.00)];
handleView1.userInteractionEnabled = YES;
handleView1.layer.anchorPoint=CGPointMake(490.0, 172.0);
[containerView addSubview:handleView1];
Run Code Online (Sandbox Code Playgroud)

core-graphics objective-c ipad ios

5
推荐指数
1
解决办法
3207
查看次数

我在哪里可以找到一些漂亮的iPhone按钮?

不需要图像背景,只需要好看的颜色就足够了.

iphone uibutton ios

5
推荐指数
1
解决办法
3592
查看次数

UITableView字幕没有出现

我有这个简单的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        cell.accessoryType=UITableViewCellAccessoryDetailDisclosureButton;
    }

    // Configure the cell...
    NSString *subtitle = [NSString stringWithString: @"All about the color "];
    cell.detailTextLabel.text=subtitle;
    cell.textLabel.text = [authorList objectAtIndex: [indexPath row]];

    return cell;
}
Run Code Online (Sandbox Code Playgroud)

问题是我的副标题没有出现.我做错了什么.请帮忙.谢谢.

objective-c uitableview ios

4
推荐指数
1
解决办法
9870
查看次数

是否可以在UI按钮中添加第二个标签?

我想知道是否可以在UIButton中添加第二个标签?我在for循环中以编程方式创建了许多按钮,并且需要引用按钮的编号(例如0,1,2)和另一个参考(整数),其中我存储对按钮链接的页面的引用至(例如22,30,49).这些数字没有关联,所以我无法确定第一个到第二个.

这就是我想要的:

for (int k=0; k < numberOfTabs; k++) // k < 4 (e.g. 3 < 4) 
{
    UIButton* btn = [[[UIButton alloc] initWithFrame:frame] autorelease];
    btn.tag = k;
Run Code Online (Sandbox Code Playgroud)

btn.tag2 = someReference;

    btn.frame = CGRectMake(-10, 0, buttonWidth, buttonHeight);
    [btn    addTarget:self
            action:@selector(tabAction:)
  forControlEvents:UIControlEventTouchUpInside];
    [btn    addTarget:self
                action:@selector(tabDelete:)
      forControlEvents:UIControlEventTouchDragOutside];
/...
Run Code Online (Sandbox Code Playgroud)

任何建议将非常感谢.

iphone cocoa-touch objective-c uibutton ios

4
推荐指数
1
解决办法
934
查看次数

UITableView节的高度

我有一个UITableView有3个部分.我的个体细胞高度不同(塌陷扩大).我需要一种方法来计算每个部分的高度,即每个部分的细胞高度之和.最好不计算每次我需要时tableView已经完成的所有操作.

我有办法推断或获得这样的价值吗?

objective-c uitableview ios

4
推荐指数
1
解决办法
7289
查看次数