我正在app Store上传我的iOS应用程序,当我上传应用程序时它会发出一些警告.警告是app references non-public selectors in payload/appname.app/appname: _terminateWithStatus我正在使用facebook sdk"facebook-ios-sdk-3.8"并解析sdk"parse-library-1.2.18".任何人都可以指导我如何删除此警告?
嗨,我正在开发通用应用程序(iPhone/iPad).一个功能是我必须从相册中选择一张照片并在UIImageView上显示.
现在的问题是它在iPhone上运行良好但是当我尝试打开相册时它会崩溃.我在行动表委托中的代码是这样的:
- (void) actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad){
if ( ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]))
{
if (buttonIndex == 0)
{
[self lockAllImagesOnTheScreen];
imagePicker.sourceType=UIImagePickerControllerSourceTypeCamera;
[self presentModalViewController:imagePicker animated:YES];
}
if (buttonIndex == 1)
{
[self lockAllImagesOnTheScreen];
imagePicker.sourceType= UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagePicker animated:YES];
}
}
else {
if (buttonIndex == 0)
{
[self lockAllImagesOnTheScreen];
imagePicker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
imagePicker.sourceType= UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagePicker animated:YES];
}
}
}
else{
if ( ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]))
{
if (buttonIndex == 0)
{
[self lockAllImagesOnTheScreen];
imagePicker.sourceType=UIImagePickerControllerSourceTypeCamera;
[self presentModalViewController:imagePicker animated:YES]; …Run Code Online (Sandbox Code Playgroud) 如何禁用在UIWebView上触摸时出现的放大镜?我不想禁用用户交互,但我不希望webview显示缩放玻璃.有任何想法吗?
这个Xcode的参考已经开始制作档案,而不是应用程序.我该如何改回来?问题和答案我必须改变我的"跳过安装"标志,但我无法找到这个标志.我正在使用xcode 4.4.1.请帮助我如何解决?
我使用的是解析1.6.5,它在我的项目中运行良好.当我在1.7.2上通过pods使用时,我遇到了关于PFNullability的问题我通过将NSNullability放在*符号旁边修复它NSError *PF_NULLABLE_S error并且它已修复但是之后我遇到链接问题.错误如下
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_PFACL", referenced from:
objc-class-ref in SignUpViewController.o
objc-class-ref in CustomLoginViewController.o
"_OBJC_CLASS_$_PFAnalytics", referenced from:
objc-class-ref in AppDelegate.o
objc-class-ref in AllAnalytics.o
"_OBJC_CLASS_$_PFCloud", referenced from:
objc-class-ref in AdminsViewController.o
objc-class-ref in AppDelegate.o
objc-class-ref in ScheduleViewController.o
objc-class-ref in HelpViewController.o
objc-class-ref in AddAdminViewController.o
objc-class-ref in TeamReleventViewController.o
objc-class-ref in PhotosAndVideosViewController.o
...
"_OBJC_CLASS_$_PFDateFormatter", referenced from:
objc-class-ref in ParseFacebookUtils(PFFacebookAuthenticationProvider.o)
"_OBJC_CLASS_$_PFFile", referenced from:
objc-class-ref in TeamReleventViewController.o
objc-class-ref in SearchTeamViewController.o
objc-class-ref in UserProfileSettingsViewController.o
objc-class-ref in PhotoSharingViewController.o
objc-class-ref in CreateNewTeamViewController.o
objc-class-ref in AddItemViewController.o …Run Code Online (Sandbox Code Playgroud) 我在我的整个应用程序中的文本字段和标签中使用自定义字体.我的字体名称是"digital-7.ttf".现在的问题是我的标签中的文本是好的,但在UITextFields中它是从底部剪切文本.当textfield正在编辑时,文本很好,但是当编辑完成后,它再次剪切文本.像这样
这样我就设置了它的字体样式
[txtFld setFont:[UIFont fontWithName:@"digital-7" size:25.0]];
和字体已添加到info.plist中
请帮我
我必须在我的ipad应用程序中给出删除缩略图动画,就像iphone/ipad应用程序删除效果一样.任何身体帮我,请附上样品照片
如果您需要更多详细信息,请在评论中提及
我正在研究一个应用程序,我必须绘制一条平滑的线,所以我按照这个链接平滑线平滑的草图绘制算法,我按照答案kyoji.但现在我不知道如何实现撤消重做功能.
请帮忙
我需要在iOS应用程序中播放YouTube视频,在播放视频时我需要在视频上添加叠加层.
1.现在如何在原生播放器中运行youtube视频?
2.如果我在UIWebview中播放视频,那么我如何检测正在播放的视频以及如何在视频上添加叠加?