首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >新的iOS iPhoto帮助控件是标准类吗?

新的iOS iPhoto帮助控件是标准类吗?
EN

Stack Overflow用户
提问于 2012-03-17 16:51:00
回答 1查看 128关注 0票数 1

iOS的新iPhoto有一个help overlay,其中包括指向/描述个人负担的控件。

这是一个我不知道的标准控件类型,还是必须手动构建的类型?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2012-03-17 17:23:42

不,这些是私有库。但我希望有一个开发人员的API来做这件事。我还看到了用于iOS的GarageBand中的帮助覆盖。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9751822

复制
相关文章
枚举帮助类
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Linq; 5 6 namespace EnumHelper 7 { 8 /// <summary> 9 /// 枚举帮助类 10 /// 1、获取枚举的描述文本 11 /// 2、获取枚举名和描述信息的列表 12 /// </summary> 13
用户6362579
2019/09/29
5380
日志帮助类
 1.代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Configuration; using System.Reflection; namespace LogHelper.Common { public class LogHelper { private string logFile
用户1055830
2018/01/18
6530
日志帮助类
iOS时间控件
[图片上传中...(Simulator Screen Shot - iPhone XR - 2019-01-17 at 18.38.16.png-732bdf-1547721696326-0)]
赵哥窟
2019/01/28
1.5K0
iOS时间控件
IOS 操作控件
UIControl的属性和方法: alignment content state enabled selected highlighted contentVerticalAlignment contentHorizontalAlignment
用户5760343
2019/07/08
3440
IOS 操作控件
SpringBoot的启动引导类真的是XXApplication吗?
SpringBoot项目中的启动类,一般都是XXApplication,例如StatsApplication,UnionApplication。每个项目的启动类名称都不一样。但是它的启动类真的是XXApplication吗?
温安适
2020/06/07
1.3K0
大家知道什么是CDN吗?对网站有什么帮助?
在当今互联网时代,网站的性能和用户体验是至关重要的。而CDN(内容分发网络)作为一种优化网站性能的技术,被广泛应用于网站开发和管理中。本文将解释什么是CDN以及它对网站的帮助。
海拥
2023/06/23
2080
[UWP]新控件ColorPicker
Fall Creators Update中提供了一个新得ColorPicker控件,解决了以前选择颜色只能用Combo Box的窘境。
dino.c
2019/01/18
6970
[UWP]新控件ColorPicker
IOS WebView控件详解
概述 WebView就是一个内嵌浏览器控件,在iOS中主要有两种WebView:UIWebView和WKWebView,UIWebView是iOS2之后开始使用,WKWebView是在iOS8开始使用,WKWebView将逐步取代笨重的UIWebView。 相比UIWebView,WKWebView做了如下优化: WKWebView更多的支持HTML5的特性 WKWebView更快,占用内存可能只有UIWebView的1/3 ~ 1/4 WKWebView高达60fps的滚动刷新率和丰富的内置手势 WKWe
xiangzhihong
2018/02/06
4.9K0
iOS UISegmentedControl控件详解
我们经常使用的一个控件是Tab,这个控件可以帮助我们将App分为几个模块,但是在一个界面内我们想要再进行细分怎么办呢?这时候就需要用到UISegmentedControl控件了,这个控件的用处就是进行分段控制,实现的样式如下:
Cloudox
2021/11/23
1.9K0
iOS UISegmentedControl控件详解
IOS UITableView UITableViewCell控件
import UIKit class ViewController:UIViewController,UITableViewDataSource { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view,typically from a nib. let screenRect = UIScreen.main.bounds let tableRect = CGRect(x:0, y:20, width: screenRect.size.width, height:screenRect.size.height - 20) let tableView = UITableView(frame:tableRect) tableView.dataSource = self self.view.addSubview(tableView) } func tableView(_ tableView:UITableView,numberOfRowsInSection section:Int) -> Int{ return 20 } func tableView(_ tableView:UITableView,cellForRowAt indexPath:IndexPath) -> UITableViewCell { let identifier = “reusedCell” var cell =tableView.dequeueReusableCell(withIdentifier:identifier) if(cell == nil) { cell = UITableViewCell(style:UITableViewCellStyle.default, reuseIdentifier:identifier) } cell?.textLabel?.text = “命运负责洗牌,玩牌的是我们自己!” return cell! } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
用户5760343
2019/07/08
6520
IOS UITableView UITableViewCell控件
IOS 重载UIControl控件
class CustomControl:UIControl { override func sendAction(action:Selector, to target:AnyObject?, forEvent event:UIEvent?) { super.sendAction(action, to:target, forEvent:event) } } self.customControl = CustomControl(frame:CGRectMake(100,100,100,100)) self.customControl.backgroundColor =UIColor.redColor() self.customControl.addTarget(self, action:Selector(“touchUpInside”),forControlEvents:UIControlEvents.TouchUpInside) self.view.addSubview(self.customControl)
用户5760343
2019/07/08
3210
HelperProvider提供控件的弹出或联机帮助
HelperProvider是.Net框架类库中内置的一个控件,可以提供控件的弹出或联机帮助。要使特定的帮助字符串与控件关联,请使用 SetHelpString 方法实现弹出;要使帮助文件与 HelpProvider关联,请设置 HelpNamespace 属性实现联机帮助。同时设置了 HelpNamespace 联机帮助与SetHelpString 弹出帮助,HelpNamespace 的帮助信息优先。
张果
2022/05/09
6090
HelperProvider提供控件的弹出或联机帮助
iOS UIProgressView控件用法
- (instancetype)initWithProgressViewStyle:(UIProgressViewStyle)style;
珲少
2018/08/15
5540
IOS UIRefreshControl刷新控件
import UIKit class ViewController:UIViewController,UITableViewDelegate,UITableViewDataSource{ @IBOutlet weak var tabvLayout:UITableView! var refreshControl = UIRefreshControl() override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. self.automaticallyAdjustsScrollViewInsets = false //添加刷新 refreshControl.addTarget(self, action:#selector(refreshData), for: UIControlEvents.valueChanged) refreshControl.attributedTitle =NSAttributedString(string:”松开后自动刷新”) tabvLayout.addSubview(refreshControl) refreshData() } // 刷新数据 func refreshData() { self.tabvLayout.reloadData() self.refreshControl.endRefreshing() } // MARK:- UITableViewDataSource func tableView(_ tableView:UITableView,numberOfRowsInSection section:Int) -> Int { return 10; } func tableView(_ tableView:UITableView,cellForRowAt indexPath:IndexPath) -> UITableViewCell { let cell = UITableViewCell(style:UITableViewCellStyle.value1, reuseIdentifier:“newsCell”) let date = NSDate() let timeFormatter = DateFormatter() timeFormatter.dateFormat = “yyy-MM-dd ‘at’ HH:mm:ss.SSS” //(时间格式) let strNowTime = timeFormatter.string(from:date as Date) as String cell.textLabel?.text = strNowTime let rect = CGRect(x:0,y:cell.frame.height-1,width:self.view.frame.size.width,height:1) let label = UILabel(frame:rect) label.backgroundColor = UIColor.lightGray() cell .addSubview(label) return cell; } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
用户5760343
2019/07/08
7140
IOS UIRefreshControl刷新控件
SpreadJS 类Excel表格控件 - V12 新特性详解
我们很高兴的宣布:纯前端类Excel表格控件 - SpreadJS 正式推出了 V12 新版本,此次的新版本中包含了诸多重量级的功能和来自客户的新需求,如对形状和富文本的支持,也有新增的图表类型,还有更多在细节处的更新。
葡萄城控件
2018/11/16
1.8K0
教育机器人是新的“智商税”吗?
复读机、电子词典、点读机、学习机……几乎每个世代的青春记忆里,都少不了那些让人向往的“学习神器”。
Alter聊科技
2023/01/13
4360
你知道Spring是怎么解析配置类的吗?
这个流程图会随着我们的学习不断的变得越来越详细,也会越来越复杂,希望在这个过程中我们都能朝着精通Spring的目标不断前进!
程序员DMZ
2020/07/09
1.6K0
你知道 Java 类是如何被加载的吗?
最近给一个非 Java 方向的朋友讲了下双亲委派模型,朋友让我写篇文章深度研究下JVM 的 ClassLoader,我确实也好久没写 JVM 相关的文章了,有点手痒痒,涂了皮炎平也抑制不住的那种。
Java技术栈
2019/10/14
7980
点击加载更多

相似问题

ConstraintLayout是新的标准吗?

10

数学类是Java的标准类吗?

35

创建新的iOS控件

20

可以开发iPhoto '11插件吗?

30

标准MediaElement控件的媒体控件可以修改吗?

14
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文