我的应用程序使用相机,我想添加覆盖在相机预览。 例如,我想在使用相机时使用相框,我也想为相机操作添加一个自定义栏。 请帮助我也这样做。
在iPhone上学习核心数据。 在核心数据填充表格视图的部分似乎有几个例子。 CoreDataBooks示例使用段,但是它们是从模型中的完整string生成的。 我想通过姓氏的第一个字母,地址簿,将核心数据表组织成部分。 我可以为每个人创造另一个属性,即一个单一的字母,以便作为部门分工,但是这似乎很糟糕。 这是我开始…伎俩似乎是愚弄sectionNameKeyPath : – (NSFetchedResultsController *)fetchedResultsController { //………SOME STUFF DELETED // Edit the sort key as appropriate. NSSortDescriptor *orderDescriptor = [[NSSortDescriptor alloc] initWithKey:@"personName" ascending:YES]; NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:orderDescriptor, nil]; [fetchRequest setSortDescriptors:sortDescriptors]; // Edit the section name key path and cache name if appropriate. // nil for section name key […]
我怎样才能让UIScrollView滚动到我的代码底部? 或者以更通用的方式,对子视图的任何一点?
我想要做的是点击一个button(它是在代码中创build的),让它调用一个不同的视图控制器,然后让它在新的视图控制器中运行一个函数。 我知道在IB可以做得相对容易,但这不是一个select。 我想要做的一个例子是,如果你有两个视图控制器,一个房子的闪屏。 另一个视图控制器已经走过了房子,你可以按照设定的顺序通过所有的房间。 启animation面将有每个房间的button,让你跳到任何点的步行。
关于苹果如何实现“幻灯片解锁”的任何想法(也就是另一个相同的例子)animation? 我想过某种animation蒙版 – 但是由于性能的原因,在iPhone OS上不提供蒙版。 是否有一些私人API的效果(如SuckEffect),他们可能使用? 聚光灯效果types? 一些核心animation的东西? 编辑:这绝对不是一系列的剧照。 我已经看到了编辑一个plist值的例子,并在jailbreak的iphones上自定义string。
我有2个视图控制器,让我们说A和B.在A,我打电话B以过渡样式显示UIModalTransitionStylePartialCurl [b setModalTransitionStyle:UIModalTransitionStylePartialCurl]; [self presentModalViewController:b animated:YES]; 它工作正常。 但是,当我按iOS 4.3编译的程序中的curl区域。 它并没有解雇。 它不回到视图控制器… 最有趣的是,这个curl是积极的,并在iOS 5.0编译的应用程序中给予回应。 我该如何解决这个问题? 而且,为什么它不closuresB视图控制器并返回到A?
有没有办法确定一个方法需要执行多less时间(以毫秒为单位)?
我需要显示从UIButton左侧的电子邮件地址,但它被放置在中心。 有没有办法将alignment设置到UIButton的左侧? 这是我现在的代码: UIButton* emailBtn = [[UIButton alloc] initWithFrame:CGRectMake(5,30,250,height+15)]; emailBtn.backgroundColor = [UIColor clearColor]; [emailBtn setTitle:obj2.customerEmail forState:UIControlStateNormal]; emailBtn.titleLabel.font = [UIFont systemFontOfSize:12.5]; [emailBtn setTitleColor:[[[UIColor alloc]initWithRed:0.121 green:0.472 blue:0.823 alpha:1]autorelease] forState:UIControlStateNormal]; [emailBtn addTarget:self action:@selector(emailAction:) forControlEvents:UIControlEventTouchUpInside]; [elementView addSubview:emailBtn]; [emailBtn release];
我想parsing一个Json文件到表视图,我得到这个错误 [__NSCFDictionary objectAtIndex:]:无法识别的select器发送到实例,应用程序崩溃。 请帮助我,我是iOS开发新手。 我的代码 @implementation ViewController – (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } – (void)viewDidLoad { self.title = @"Feeds"; [super viewDidLoad]; [UIApplication sharedApplication].networkActivityIndicatorVisible = YES; NSURL *url = [NSURL URLWithString:@"http://little-people.blogspot.com/feeds/posts /default?alt=json"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [[NSURLConnection alloc] initWithRequest:request delegate:self]; […]
可能重复: 如何在cocoaObjective-C类中的variables前面加下划线? 我看过很多在线的例子,他们在财产申报中使用下列编码风格: @interface Book : NSObject { NSString *_title; } @property (nonatomic, retain) NSString *title; @end 执行中: @implementation Book @synthesize title = _title; @end 问题是为什么我们使用下划线?