Questions tagged «cocoa-touch»

驱动iOS应用程序的Cocoa Touch框架共享在Mac上发现的许多成熟模式,但它们的构建特别着重于基于触摸的界面和优化。


6
如何将徽章添加到标准UIButton?[关闭]
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 6年前关闭。 改善这个问题 是否可以在标准中添加外观标准的徽章UIButton? 如果半本地不支持它,最简单的方法是什么? 示例图片:

4
如何更改模态UIViewController的动画样式?
我目前正在显示这样的UIViewController: [[self navigationController] presentModalViewController:modalViewController animated:YES]; 并像这样隐藏它: [self.navigationController dismissModalViewControllerAnimated:YES]; 动画是“从底部向上滑动” ...然后向下滑动。如何更改动画样式?我可以使其淡入/淡出吗? 干杯!

7
如何忽略触摸事件并将其传递给另一个子视图的UIControl对象?
我有一个自定义的UIViewController,其UIView占据了屏幕的一个角,但是除了其中有一些按钮和内容的部分之外,大多数视图都是透明的。由于该视图上对象的布局,该视图的框架可以掩盖其下方的一些按钮。我希望能够忽略该视图上的任何触摸,如果它们没有触摸任何重要的东西,但是我似乎只能传递实际的触摸事件(touchesEnded / nextResponder内容)。如果我有一个UIButton或类似的不使用touchesEnded的东西,如何将touch事件传递给它? 我不能只是手动找出要调用的按钮选择器,因为此自定义ViewController可以用于许多不同的视图。我基本上需要一种方法来称呼它: [self.nextResponder touchesEnded:touches withEvent:event]; 以及UIControl类型。


7
iOS 8-在关闭具有自定义演示的视图控制器后屏幕空白
使用关闭各种视图控制器时,关闭视图控制器后UIModalPresentationCustom,屏幕将变黑,就好像所有视图控制器都已从视图层次结构中删除一样。 正确设置了过渡委托,要求并正确传递animationControllerForPresentedController,并且一旦动画结束,过渡就完成了。 使用iOS 7 SDK编译时,此确切的代码可以完美地工作,但使用iOS 8b5编译时,该代码会损坏

5
与-respondsToSelector等效的类方法:
是否有一个等效于的类方法-respondsToSelector:? 像+respondsToSelector:什么? 我问的原因是因为通过-respondsToSelector:在类级别上实现,我得到了编译器警告:“在协议中找到了'-respondsToSelector:'而不是'+ respondsToSelector:'”。 代码如下: Class <SomeProtocol> someClass = [someInstance class]; if ([someClass respondsToSelector:@selector(someSelector:)]) { someVar = [someClass someSelector:someData]; }

10
我应该如何将int传递给stringWithFormat?
我尝试使用stringWithFormat在标签的text属性上设置一个数值,但是以下代码不起作用。我无法将int强制转换为NSString。我期望该方法将知道如何自动将int转换为NSString。 我在这里需要做什么? - (IBAction) increment: (id) sender { int count = 1; label.text = [NSString stringWithFormat:@"%@", count]; }

9
清除UIWebview缓存
我使用UIWebview来使用loadRequest:方法加载网页,当我离开该场景时,我调用[self.webView stopLoading];并释放了webView。 在第一次启动的活动监视器中,我看到实际内存增加了4MB,并且在多次启动/加载时,实际内存没有增加。它仅增加一次。 我已经检查了webview的保留计数。这是正确的,即0。我认为UIWebView正在缓存一些数据。如何避免缓存或删除缓存的数据?还是有其他原因?





16
UIImage圆角
我尝试在UIImage上弄圆角,到目前为止,我读到的最简单的方法是使用蒙版图像。为此,我使用了TheElements iPhone Example中的代码以及一些找到的图像调整大小代码。我的问题是resizeImage始终为nil,我找不到错误... - (UIImage *)imageByScalingProportionallyToSize:(CGSize)targetSize { CGSize imageSize = [self size]; float width = imageSize.width; float height = imageSize.height; // scaleFactor will be the fraction that we'll // use to adjust the size. For example, if we shrink // an image by half, scaleFactor will be 0.5. the // …
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.