Questions tagged «iphone»

除非要专门针对Apple的iPhone和/或iPod touch,否则请勿使用此标签。对于不依赖于硬件的问题,请使用标签[ios]。需要考虑的更多标签是[xcode](但仅当问题与IDE本身有关时),[swift],[objective-c]或[cocoa-touch](但不包括[cocoa])。请避免有关iTunes App Store或iTunes Connect的问题。如果使用C#,请使用[mono]进行标记。

9
接收者类型***例如消息是转发声明
在我的iOS5应用中,我有NSObject States课,然后尝试初始化它: states = [states init]; 这是init方法States: - (id) init { if ((self = [super init])) { pickedGlasses = 0; } return self; } 但是行中有错误 states = [states init]; 例如,消息的接收方类型“状态”为前向声明 这是什么意思?我究竟做错了什么?

10
iPhone App减去App​​ Store?
如果我在Mac上创建应用程序,是否有任何方法可以让它在iPhone上运行而无需通过应用程序商店? 只要我仍然可以运行使用官方SDK创建的应用程序,就不必将iPhone越狱。出于某些原因,我无法进入应用程序商店。
199 ios  iphone 

13
如何为UIImageView中的图像变化设置动画?
我有UIImageView一张图片。现在,我有了一个全新的图像(图形文件),并希望在此显示它UIImageView。如果我刚设定 myImageView.image = newImage; 新图像立即可见。无法制作动画。 我希望它很好地淡入新图像。我认为也许有比仅UIImageView在此基础上创建一个新动画并与动画混合更好的解决方案了?


11
在代码中为UIButton设置图像
如何在代码中为UIButton设置图像? 我有这个: UIButton *btnTwo = [UIButton buttonWithType:UIButtonTypeRoundedRect]; btnTwo.frame = CGRectMake(40, 140, 240, 30); [btnTwo setTitle:@"vc2:v1" forState:UIControlStateNormal]; [btnTwo addTarget:self action:@selector(goToOne) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:btnTwo]; 但看不到会为它设置图像的内容。

21
成功提交AppStore的提示?[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 8年前关闭。 改善这个问题 在一两天内,我准备将我的iPhone应用程序提交到AppStore,我很好奇是否已经通过此过程的人有任何提示/建议来顺利进行提交过程。 这是我介绍的内容; 没有内存泄漏 在实际设备上测试性能 不会崩溃:) 使用正确的证书/配置文件 我不太确定的是如何在info.plist中配置“捆绑包显示名称” /“捆绑包标识符”和“捆绑包名称”。我知道第一个是显示在iPhone本身上的文字,但是最后一个呢?这是否必须与Bundle Identifier相匹配? 还有什么我应该添加到info.plist的东西吗?我注意到,当为Adhoc发行而构建时,我的应用程序在iTunes中没有任何作者/标题信息。
196 iphone  ios  app-store 




25
缩放MKMapView以适合注释图钉?
我正在使用MKMapView,并在大约5至10公里的区域中向地图添加了许多注释图钉。当我运行该应用程序时,地图开始缩小以显示整个世界,什么是最好的缩放地图方式以使图钉适合视图? 编辑: 我最初的想法是使用MKCoordinateRegionMake并从我的注释中计算坐标中心,longitudeDelta和latitudeDelta。我很确定这是可行的,但是我只是想检查一下我是否没有遗漏任何明显的东西。 添加的代码,顺便说一句:FGLocation是符合的类MKAnnotation,locationFake是NSMutableArray这些对象之一。总是欢迎评论.... - (MKCoordinateRegion)regionFromLocations { CLLocationCoordinate2D upper = [[locationFake objectAtIndex:0] coordinate]; CLLocationCoordinate2D lower = [[locationFake objectAtIndex:0] coordinate]; // FIND LIMITS for(FGLocation *eachLocation in locationFake) { if([eachLocation coordinate].latitude > upper.latitude) upper.latitude = [eachLocation coordinate].latitude; if([eachLocation coordinate].latitude < lower.latitude) lower.latitude = [eachLocation coordinate].latitude; if([eachLocation coordinate].longitude > upper.longitude) upper.longitude = [eachLocation …


26
应用商店链接“为该应用评分/评论”
我想在我的应用程序中添加“评价/评论此应用程序”功能。 有没有一种方法可以直接链接到他们查看应用程序的应用程序商店中的屏幕?因此,客户不必点击主应用程序链接。谢谢。 编辑:由于缺乏回应,对此开始了赏金。只是为了确保它非常清晰:我知道我可以链接到商店中我的应用程序的页面,并要求用户从此处单击以“查看此应用程序”屏幕。问题是是否可以直接链接到“审阅此应用程序”屏幕,这样他们就不必单击任何内容。
192 iphone  app-store 

21
如何向UINavigationController添加右键?
我试图将刷新按钮添加到导航控制器的顶部栏中,但没有成功。 这是标题: @interface PropertyViewController : UINavigationController { } 这是我尝试添加的方式: - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) { UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Show" style:UIBarButtonItemStylePlain target:self action:@selector(refreshPropertyList:)]; self.navigationItem.rightBarButtonItem = anotherButton; } return self; }


4
Swift-转换成绝对值
有什么办法可以从整数中获取绝对值? 例如 -8 to 8 我已经尝试过使用UInt(),假设它会将Int转换为无符号值,但是没有用。
190 ios  iphone  swift 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.